1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
.. _mathml-support:
##############
MathML Support
##############
The support for MathML in MathJax involves two functions: the first
looks for ``<math>`` 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
<mspace width="thinmathspace"></mspace>
rather than ``<mspace width="thinmathspace" />``. 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
``<mspace width="1em" />``, since there is no closing tag, the rest of
the mathematics will become the content of the ``<mspace>`` tag; but
since ``<mspace>`` 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 <http://www.w3.org/TR/MathML3/>`_
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
<http://www.w3.org/Math/testsuite/results/tests.html>`_ for details.
.. _mathml-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
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
MathML: {
extensions: ["content-mathml.js"]
}
});
</script>
Note that this script tag must come *before* the script that loads
``MathJax.js`` itself.
For more information, see :doc:`options/extensions/Content-MathML`.
.. _mathml-mml3:
Experimental mml3 extension
===========================
MathML includes a number of tags that support elementary-school
mathematics, like ``<mstack>`` and ``<mlongdiv>``. MathJax has only
experimental support for these tags via the `mml3` extension. This
uses an XSLT transform to convert these tags into other presentation
MathML tags that MathJax has implemented. This does a reasonable job
for some constructs, and a poorer job for others, but it does make it
possible to process elementary math within MathJax. Better support is
planned for the future.
To activate experimental features in your documents, simply include
``[mml]/mml3`` in the ``load`` array of the ``loader`` section of your
configuration:
.. code-block:: javascript
MathJax = {
loader: {load: ['[mml]/mml3']}
};
This will install a pre-filter on the MathML input jax that performs
the XSLT transform before processing it.
.. _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
<http://www.w3.org/TR/MathML/chapter5.html#mixing.semantic.annotations>`_ and
the :ref:`menu-options` documentation for details.
|-----|
|