##// END OF EJS Templates
Added code to fix the math $ in the notebook so it...
Added code to fix the math $ in the notebook so it works with markdown2latex.

File last commit:

r9776:328a2ce9
r9776:328a2ce9
Show More
latex_base.nbcv
18 lines | 543 B | text/plain | TextLexer
Matthias BUSSONNIER
use configuration file to do nice stuff
r9618 c = get_config()
c.ConverterTemplate.template_file='latex_base'
c.ConverterTemplate.tex_environement=True
Matthias BUSSONNIER
cleanup profile fixup rst
r9672
Matthias BUSSONNIER
fix fileext and html multidisplay
r9637 c.NbconvertApp.fileext='tex'
Matthias BUSSONNIER
create configurable preprocessors
r9624
Matthias BUSSONNIER
cleanup profile fixup rst
r9672 c.GlobalConfigurable.display_data_priority =['latex', 'svg', 'png', 'jpg', 'jpeg' , 'text']
# do not extract text
c.ExtractFigureTransformer.display_data_priority=['latex', 'svg', 'png', 'jpg', 'jpeg']
Matthias BUSSONNIER
create configurable preprocessors
r9624 c.ExtractFigureTransformer.extra_ext_map={'svg':'pdf'}
Matthias BUSSONNIER
add stdout flag and description in help
r9625 c.ExtractFigureTransformer.enabled=True
Jonathan Frederic
Added code to fix the math $ in the notebook so it...
r9776
# Enable latex transformer (make markdown2latex work with math $.)
c.LatexTransformer.enabled=True