<mml:math>

Math (MathML 2.0 Tag Set)

Use documentation for the Mathematical Markup Language (MathML) 2.0 Tag Set. (http://www.w3.org/TR/MathML2/)

Remarks

The top-level element for math tagged according to the MathML Tag Set.

Changes to MathML: With one exception, the various elements and attributes of MathML used inside <mml:math> are not documented here, and the reader should refer to online documentation from the W3C and Design Science. The one exception is the <mml:annotation-xml> element. The content model for the <mml:annotation-xml> is normally “ANY”, but this causes difficulties in many editing tools, so this Tag Set has reduced the content model to one or more paragraphs: (p+).

MathML Namspacing: The vast majority of users of this Tag Set use the DTDs as their primary (or only) model, so this Tag Set is maintained to ensure that users of DTDs and DTD-based tools will work well. Because DTDs do not “play well” with namespaces, and most DTD-based tools are not namespace aware, the MathML namespace has been hardcoded to the prefix “mml” in the DTDs. This means that the element name, in the DTDs, really is <mml:math>. While this was the usual prefix when this Tag Set was originally established, the more frequently seen prefix is now “m”. Since XSD and RNG use “real” namespaces, this makes no difference to them, as to a namespace-aware processor a namespace prefix is only a placeholder. For DTD users, the element names in the MathML will need to be “mml” (for example, <mml:mfrac>), but tools can be set to provide that prefix and the essence of namespaces is that prefixes do not matter, so no harm is done.

Some current MathML viewers cannot handle MathML elements that are prefixed (using the tag <mml:msub> rather than the tag <msub>) unless the MathML namespace pseudo-attribute has been placed directly on the <mml:math> element (<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML"); the presence of the namespace on the top-level element is not good enough. By default in this Tag Set, the namespace has been established as a #FIXED attribute on the <mml:math> element, but processors not using a DTD/schema cannot see defaulted or #FIXED attributes. For such processors, the MathML namespace attribute must be placed directly on all <mml:math> elements in the instance document.

Attributes

altimg Alternate Image (MathML 2.0 Tag Set)
alttext Alternate Text (MathML 2.0 Tag Set)
baseline Baseline (MathML 2.0 Tag Set)
class Class (MathML 2.0 Tag Set)
display Display (MathML 2.0 Tag Set)
height Height (MathML 2.0 Tag Set)
id Identifier
macros Macros (MathML 2.0 Tag Set)
mode Mode (MathML 2.0 Tag Set)
name Name
other Other (MathML 2.0 Tag Set)
overflow Overflow (MathML 2.0 Tag Set)
style Style (NISO JATS table model; MathML 2.0 Tag Set)
type Type (MathML 2.0 Tag Set)
width Width (NISO JATS table model; MathML 2.0 Tag Set)
xlink:href Href (Linking Mechanism)
xlink:type Type of Link
xmlns:mml MathML Namespace Declaration
xref Cross-Reference (MathML 2.0 Tag Set)
xsi:schemaLocation Schema Location (MathML 2.0 Tag Set)

This element may be contained in:

<alternatives>, <alt-title>, <app>, <app-group>, <article-title>, <attrib>, <bio>, <body>, <bold>, <boxed-text>, <chem-struct>, <comment>, <def-head>, <disp-formula>, <disp-quote>, <glossary>, <inline-formula>, <italic>, <license-p>, <meta-value>, <monospace>, <named-content>, <notes>, <overline>, <p>, <ref-list>, <roman>, <sans-serif>, <sc>, <sec>, <strike>, <styled-content>, <sub>, <subtitle>, <sup>, <td>, <term>, <term-head>, <textual-form>, <th>, <title>, <trans-subtitle>, <trans-title>, <underline>

Example

...
<p>... As seen in the following summation:
<mml:math>
<mml:semantics>
<mml:mrow>
<mml:munder>
<mml:mo>&sum;</mml:mo>
<mml:mi>m</mml:mi>
</mml:munder>
<mml:mrow>
<mml:msub>
<mml:mover accent='true'>
<mml:mi>p</mml:mi>
<mml:mo>&dot;</mml:mo>
</mml:mover>
<mml:mi>m</mml:mi>
</mml:msub>
<mml:mo>=</mml:mo>
<mml:mn>0</mml:mn>
</mml:mrow>
</mml:mrow>
</mml:semantics>
</mml:math>
</p>
...

Module

JATS-mathml2.dtd