views:

324

answers:

2

Hi,

Is there any solution in ASP.NET/C# or Jquery for writing math equations as MathML is not very well supported by browsers.

Thanks

A: 

There are several attempts at generating equations in HTML. This is one. There are several others but I haven't used any in projects myself so I cannot say how good these are.

Vincent Ramdhanie
+3  A: 

There are a number of services that will translate LaTeX equations into an image for you.

For example, here's a relatively famous equation using codecogs.com.

e = m c squared

In this case, the url is: http://latex.codecogs.com/png.download?e%3Dmc%5E2 (e=mc^2 post url-encoding).

That specific website also has a little equation editor to give you a hand in writing your LaTeX equation.

DK