Details
-
Bug
-
Resolution: Duplicate
-
Major
-
None
-
1.9.1
-
None
-
Unknown
-
N/A
-
N/A
-
Description
The LaTeX template SpecialSymbolBlock translates a backslash as
#elseif ($latex.block.getSymbol() == '\')
\$\backslash\$##
This doesn't compile, since the dollar signs are escaped and do not enter/leave math mode. Actually math mode isn't necessary. The following will do:
#elseif ($latex.block.getSymbol() == '\')
\textbackslash{}##