Added escaping of euro character to LaTeX writer.

Partially resolves #309.
This commit is contained in:
John MacFarlane 2011-09-23 14:58:16 -07:00
parent 017b443a4c
commit f8df0f50fd

View file

@ -142,6 +142,7 @@ stringToLaTeX = escapeStringUsing latexEscapes
[ ('^', "\\^{}")
, ('\\', "\\textbackslash{}")
, ('~', "\\ensuremath{\\sim}")
, ('€', "\\euro{}")
, ('|', "\\textbar{}")
, ('<', "\\textless{}")
, ('>', "\\textgreater{}")