I have a problem with LaTeX – I don't know how to put mathematical equations and symbols in listings. I use the listings package and it's offers great looking listings, but it doesn't allow math symbols in $ ... $. Another package, algorithms, allows math, but listings doesn't look as good as with listings (the problem is that algorithms demands to get new line after every if, then, etc.)

link|improve this question
feedback

1 Answer

up vote 18 down vote accepted

I am not a 100% sure but I think you can use the option mathescape for your environment which should give you the ability to use the normal latex behavior of the $-signs. Have you tried

\begin{lstlisting}[mathescape]
...
\end{lstlisting}

or did you take a look into the listings package manual?

link|improve this answer
2  
This is the right solution. I used it with success, and it is properly documented in ftp.tex.ac.uk/tex-archive/macros/latex/contrib/listings/…, p. 38 – tonio May 11 '10 at 11:36
Thanks! [mathescape] did the job! – Michal May 11 '10 at 21:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.