[Tex/LaTex] How to incorporate TeX mathematics into a website

htmlmath-modeonline

How should I incorporate TeX in a website to render mathematical formulas? If there are multiple ways, what is the easiest way?

Best Answer

To display mathematics on the web, you have a number of options. There is the MathML standard which has the advantage of being endorsed by the same body that maintains the HTML and CSS standards. This isn't however, LaTeX based. There are tools to translate LaTeX code into MathML.

There is the "heavy duty" MathJax option. You can either install this on your server or use their CDN.

The simplest approach might be to use something like codecogs to produce images that you just include with html img tags...

Related Question