saberlivre
While the major browsers are slow to implement MathML, several interesting alternatives have emerged.
One is MathJax www.mathjax.org, which allows the math to be seen in the content of your webpage.
Just put this in the <head> section
and write the latex (or mathml) code in the body
and the Maxwell Equations are displayed

One is MathJax www.mathjax.org, which allows the math to be seen in the content of your webpage.
Just put this in the <head> section
| Code: |
| <script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"> </script> |
and write the latex (or mathml) code in the body
| Code: |
| $$\begin{aligned}
\nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} & = \frac{4\pi}{c}\vec{\mathbf{j}} \\ \nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \\ \nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \\ \nabla \cdot \vec{\mathbf{B}} & = 0 \end{aligned}$$ |
and the Maxwell Equations are displayed
