##// 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
c = get_config()
c.ConverterTemplate.template_file='latex_base'
c.ConverterTemplate.tex_environement=True
c.NbconvertApp.fileext='tex'
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']
c.ExtractFigureTransformer.extra_ext_map={'svg':'pdf'}
c.ExtractFigureTransformer.enabled=True
# Enable latex transformer (make markdown2latex work with math $.)
c.LatexTransformer.enabled=True