.. _mathml-support: ############## MathML Support ############## The support for MathML in MathJax involves two functions: the first looks for ```` tags within your document and marks them for later processing by MathJax, and the second converts the MathML to the internal format used by MathJax, where one of MathJax's output processors then displays it in the web page. In addition, MathJax's internal format is essentially MathML (with a few additions), implemented as javascript objects rather than DOM elements. MathJax's various input processors all convert their original format into this internal MathML format, and its output processors take this MathML and produce the proper output from it. Because the internal format is MathML-based, MathJax provides the ability to convert to and from MathML notation. Although some browsers have native support for rendering MathML, not all do, and so MathJax makes it possible to view MathML notation in *all* browsers. Even for those that do support MathML, it may be valuable to use MathJax, since that will produce consistent output across all browsers, and MathJax implements features and functionality that is not available in some native MathML implementations. .. _mathml-in-html: MathML in HTML pages ==================== For MathML that is handled via the preprocessor, you should not use named MathML entities, but rather use numeric entities like ``√`` or unicode characters embedded in the page itself. The reason is that entities are replaced by the browser before MathJax runs, and some browsers report errors for unknown entities. For browsers that are not MathML-aware, that will cause errors to be displayed for the MathML entities. While that might not occur in the browser you are using to compose your pages, it can happen with other browsers, so you should avoid the named entities whenever possible. If you must use named entities, you may need to declare them in the `DOCTYPE` declaration by hand. When you use MathML in an HTML document rather than an XHTML one (MathJax will work with both), you should not use the "self-closing" form for MathML tags with no content, but should use separate open and close tags. That is, use .. code-block:: html rather than ````. This is because HTML does not have self-closing tags, and some browsers will get the nesting of tags wrong if you attempt to use them. For example, with ````, since there is no closing tag, the rest of the mathematics will become the content of the ```` tag; but since ```` should have no content, the rest of the mathematics will not be displayed. This is a common error that should be avoided. Modern browsers that support HTML5 should be able to handle self-closing tags, but older browsers have problems with them, so if you want your mathematics to be visible to the widest audience, do not use the self-closing form in HTML documents. .. _mathml-tags: Supported MathML tags ===================== MathJax supports the `MathML3.0 `_ mathematics tags, with some limitations. The MathML support is still under active development, so some tags are not yet implemented, and some features are not fully developed, but are coming. The deficiencies include: - No support for alignment groups in tables. - Not all attributes are supported for tables. E.g., ``columnspan`` and ``rowspan`` are not implemented yet. - Experimental support for the elementary math tags: ``mstack``, ``mlongdiv``, ``msgroup``, ``msrow``, ``mscarries``, and ``mscarry`` (via the ``mml3`` extension, see below). - Experimental support for bidirectional mathematics (via the ``mml3`` extension, see below). See the `results of the MathML3.0 test suite `_ for details. .. _content-mathml: Content MathML ============== The version 2 ``content-mathml`` extension is not yet available in version 3. .. To use Content MathML in your documents, simply include ``"content-mathml.js"`` in the ``extensions`` array of your MathML configuration block. For example .. code-block:: html Note that this script tag must come *before* the script that loads ``MathJax.js`` itself. For more information, see :doc:`options/extensions/Content-MathML`. .. _mml3-mathml: Experimental mml3 extension =========================== The version 2 ``mml3`` extension is not yet available in version 3. .. To activate experimental features in your documents, simply include ``"mml3.js"`` in the ``extensions`` array of your MathML configuration block. For example .. code-block:: html Note that this script tag must come *before* the script that loads ``MathJax.js`` itself. For more information, see :doc:`options/extensions/MML3`. .. _mathml-semantics-annotations: Semantics and Annotations ========================= Some popular annotation formats like TeX, Maple, or Content MathML are often included in the MathML source via the ``semantics`` element. This is particularly true of MathML that is generated by other software, such as editors or computational tools. MathJax provides access to these annotations through the ``"Show Math As"`` menu, via the ``Annotations`` submenu. See the `MathML Annotation Framework `_ and the :ref:`menu-options` documentation for details. |-----|