Convert LaTeX to ePub [closed]

Pandoc supports conversion from Latex to e-Pub. The chances are high that it doesn’t handle your Latex documents completely, but it should help with the conversion process. Pandoc has converted Tex formulae to Mathml; I don’t know how good that conversion is since I haven’t used it.

How to make cheat sheets in Latex? [closed]

Because some professors allowed us to use cheat sheets written on a computer for exams, I decided to create a template some time ago to save enough space as possible but keep readibility. The template uses the code of the answer here. Update: The complete source code can now be found here. The base file … Read more

Math symbols in listings

You can use the option mathescape for your environment which gives you the ability to use the normal latex behavior of the $-signs. Try: \begin{lstlisting}[mathescape] … \end{lstlisting} For more info, take a look into the listings package manual.