vote up 2 vote down star
1

I'm looking for a standalone math equation renderer that generates a gif or png file. It should be able to take equation input from a URL. It has to work on a webserver, preferably on IIS and .NET based.

I read the previous topics here, but none of them seem to work well.

flag

5 Answers

vote up 2 vote down

You can use some web-services that do this, like (MimeTeX)[http://www.forkosh.com/mimetex.html] or MathRan

link|flag
vote up 2 vote down

See also this.

link|flag
vote up 1 vote down

I know this doesn't directly answer your question, but most people don't think about this first time, so you might want to consider it.

You can render the LaTeX client-side with javascript libraries such as jsMath, it is nice because it introduces no overhead to your server, and can be dynamically edited.

link|flag
vote up 0 vote down

tex4ht renders all math as gifs. it comes with miktex. you can use it from the command line. it will also dump to math ML.

link|flag
vote up 0 vote down

Latex2PNG does the trick. Moreover, its source is very simple (< 100 lines), so you can easily see how to build one yourself. If you want to build such a thing on a Microsoft stack, you'll need to install latex on Windows (not too hard), or write some code to dispatch the render requests to a unix machine with latex.

link|flag
this seems like the best solution so far. where do I download latex for windows? – newWeb Jul 23 at 3:36
I install latex via Cygwin, but there are many other options. The most popular seems to MiKTeX. Remember that a latex will spit out a DVI file, which you'll want to convert to a GIF or PNG file. – petehern Jul 23 at 21:13

Your Answer

Get an OpenID
or

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