Converte fragmentos TeX para imagens PNG

2

Existem várias fórmulas do tipo TeX incorporadas encontradas na Wikipedia e em outros lugares, como:

\begin{array}{rcl} Y' &=& Y' + 16\ U &=& U + 128\ V &=& V + 128 \end{array}

Eles não são arquivos .tex completos, por isso pdflatex não pode processá-los diretamente. Apesar disso, o servidor os converte em imagens PNG e as apresenta no navegador.

Como posso converter um código assim em imagens da linha de comando?

    
por Vi. 12.04.2012 / 11:23

1 resposta

4

Você pode usar (e eu usei) mathTeX :

MathTeX, licensed under the gpl, is a cgi program that lets you easily embed LaTeX math in your own html pages, blogs, wikis, etc. It parses a LaTeX math expression and immediately emits the corresponding gif (or png) image, rather than the usual TeX dvi. So just place an html tag in your document wherever you want to see the corresponding LaTeX expression.

Ele pode ser usado como um script CGI no servidor e vinculado diretamente a partir do < img > ou execute na linha de comando para gerar arquivos de imagem independentes. Na página inicial:

mathTeX is usually run by your web server as a cgi program, obtaining its input expression from the query-string of an html tag. But you can also run mathTeX from your Unix shell, supplying all input on the command line. For example, ./mathtex.cgi "x^2+y^2" –o equation1 renders an image of x^2+y^2 in file equation1.gif.

    
por 12.04.2012 / 11:27