0

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?

  • 4
    How long do you expect to spend looking at this as an issue? How do those hours translate into money? Frankly, if the tool does what you need, I'd think $299 is a bargain here. – Marc Gravell Mar 23 '12 at 11:42

1 Answers1

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
  • 1
    Thanks 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