I have a website that will need to display some mathematics (mostly fractions and square roots) in HTML. Since MathML does not seem to be supported yet by most browsers, I need a tool to dynamically convert the formulas to transparent images. I've looked into MathML.Net, but I don't need the equation editor, so I was hoping to find something cheaper than $299. Any suggestions?
Asked
Active
Viewed 1,852 times
1 Answers
1
Why not just do the rendering clientside (javascript), like math.stackexchange.com does? See also this question and this question.
If you truly need to render an image on the server, see here - most of those libraries have the ability to export. I would recommend MathTex, though it is not native C#.

Community
- 1
- 1

BlueRaja - Danny Pflughoeft
- 84,206
- 33
- 197
- 283
-
1Thanks for pointing me in the right direction. It turned out that [jqMath](http://mathscribe.com/author/jqmath.html) was exactly what I needed. – Bjørn Ove Thue Mar 27 '12 at 18:47