LatexRender for Linux --------------------- Install LaTeX, ImageMagick and Ghostscript on your PC then copy and paste the following to make two files, latexrender.sh and temp.tex. latexrender.sh -------------- # change the paths below if required /usr/bin/latex --interaction=batchmode temp.tex /usr/bin/dvips -E temp.dvi -o temp.ps /usr/bin/convert -density 120 -trim -transparent "#FFFFFF" temp.ps latex.png temp.tex -------- \documentclass[10pt]{article} \usepackage[latin1]{inputenc} \usepackage{amsmath} \usepackage{amsfonts} \usepackage{amssymb} \pagestyle{empty} \begin{document} $put your formula here$ \end{document} Adjust temp.tex to include your formula and packages as required. Run latexrender.sh and the resulting image will appear as latex.png Steve Mayer