MathML
   HOME

TheInfoList



OR:

Mathematical Markup Language (MathML) is a
mathematical markup language Mathematical Markup Language (MathML) is a mathematical markup language, an application of XML for describing mathematical notations and capturing both its structure and content. It aims at integrating mathematical formulae into World Wide W ...
, an application of
XML Extensible Markup Language (XML) is a markup language and file format for storing, transmitting, and reconstructing arbitrary data. It defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. T ...
for describing mathematical notations and capturing both its structure and content. It aims at integrating mathematical formulae into World Wide Web pages and other documents. It is part of HTML5 and is a ISO/IEC standar
ISO/IEC 40314
since 2015.


History

MathML 1 was released as a W3C recommendation in April 1998 as the first
XML Extensible Markup Language (XML) is a markup language and file format for storing, transmitting, and reconstructing arbitrary data. It defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. T ...
language to be recommended by the W3C. Version 1.01 of the format was released in July 1999 and version 2.0 appeared in February 2001. In October 2003, the second edition of MathML Version 2.0 was published as the final release by the W3C Math Working Group. MathML was originally designed before the finalization of XML namespaces. However, it was assigned a namespace immediately after the Namespace Recommendation was completed, and for XML use, the elements should be in the namespace with namespace URL http://www.w3.org/1998/Math/MathML. When MathML is used in HTML (as opposed to XML) this namespace is automatically inferred by the HTML parser and need not be specified in the document.


MathML version 3

Version 3 of the MathML specification was released as a W3C recommendation on 20 October 2010. A recommendation of ''A MathML for CSS Profile'' was later released on 7 June 2011; this is a subset of MathML suitable for CSS formatting. Another subset, ''Strict Content MathML'', provides a subset of content MathML with a uniform structure and is designed to be compatible with
OpenMath OpenMath is the name of a markup language for specifying the meaning of mathematical formulae. Among other things, it can be used to complement MathML, a standard which mainly focuses on the presentation of formulae, with information about their ...
. Other content elements are defined in terms of a transformation to the strict subset. New content elements include which associates bound variables () to expressions, for example a summation index. The new element allows structure sharing. The development of MathML 3.0 went through a number of stages. In June 2006 the W3C rechartered the MathML Working Group to produce a MathML 3 Recommendation until February 2008 and in November 2008 extended the charter to April 2010. A sixth Working Draft of the MathML 3 revision was published in June 2009. On 10 August 2010 version 3 graduated to become a "Proposed Recommendation" rather than a draft.Mathematical Markup Language Version 3.0 W3C Recommendation
W3.org. Retrieved on 9 May 2012.
The Second Edition of MathML 3.0 was published as a W3C Recommendation on 10 April 2014. The specification was approved as an ISO/IEC international standard 40314:2015 on 23 June 2015.


Presentation and semantics

MathML deals not only with the ''presentation'' but also the ''meaning'' of formula components (the latter part of MathML is known as "Content MathML"). Because the meaning of the equation is preserved separate from the presentation, how the content is communicated can be left up to the user. For example, web pages with MathML embedded in them can be viewed as normal web pages with many browsers, but visually impaired users can also have the same MathML read to them through the use of screen readers (e.g. using the
MathPlayer Mathematical Markup Language (MathML) is a mathematical markup language, an application of XML for describing mathematical notations and capturing both its structure and content. It aims at integrating mathematical formulae into World Wide We ...
plugin for
Internet Explorer Internet Explorer (formerly Microsoft Internet Explorer and Windows Internet Explorer, commonly abbreviated IE or MSIE) is a series of graphical web browsers developed by Microsoft which was used in the Windows line of operating systems (in ...
or Firefox, Opera 9.50 build 9656+ or the Fire Vox extension for Firefox). Newer versions of
JAWS Jaws or Jaw may refer to: Anatomy * Jaw, an opposable articulated structure at the entrance of the mouth ** Mandible, the lower jaw Arts, entertainment, and media * Jaws (James Bond), a character in ''The Spy Who Loved Me'' and ''Moonraker'' * ...
support MathML voicing as well as braille output.


Presentation MathML

Presentation MathML focuses on the display of an equation, and has about 30 elements. The elements' names all begin with . A Presentation MathML expression is built up out of ''tokens'' that are combined using higher-level elements, which control their layout (there are also about 50 attributes, which mainly control fine details). Token elements generally only contain characters (not other elements). They include: * – identifiers; * – operators; * – numbers. * – text. Note, however, that these token elements may be used as extension points, allowing markup in host languages. MathML in HTML5 allows most inline HTML markup in mtext, and is conforming, with the HTML markup being used within the MathML to mark up the embedded text (making the first word bold in this example). These are combined using layout elements, that generally contain only elements. They include: * – a horizontal row of items; * , , and others – superscripts, limits over and under operators like sums, etc.; * – fractions; * and – roots; * – surrounding content with fences, such as parentheses. As usual in HTML and XML, many
entities An entity is something that exists as itself, as a subject or as an object, actually or potentially, concretely or abstractly, physically or not. It need not be of material existence. In particular, abstractions and legal fictions are usually re ...
are available for specifying special symbols by name, such as and . An interesting feature of MathML is that entities also exist to express normally-invisible operators, such as (or the shorthand ) for implicit multiplication. They are: * ; * ; * ; * . The full specification of MathML entities is closely coordinated with the corresponding specifications for use with HTML and XML in general. Thus, the expression a x^2+b x+c requires two layout elements: one to create the overall horizontal row and one for the superscripted exponent. Including only the layout elements and the (not yet marked up) bare tokens, the structure looks like this: a ⁢ x 2 + b ⁢ x + c However, the individual tokens also have to be identified as identifiers (mi), operators (mo), or numbers (mn). Adding the token markup, the full form ends up as a x2 +bx +c A valid MathML document typically consists of the XML declaration,
DOCTYPE #REDIRECT Document type declaration {{redirect category shell, {{R move{{R from other capitalisation{{R up ...
declaration, and document element. The document body then contains MathML expressions which appear in <math> elements as needed in the document. Often, MathML will be embedded in more general documents, such as
HTML The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaS ...
, DocBook, or other
XML Extensible Markup Language (XML) is a markup language and file format for storing, transmitting, and reconstructing arbitrary data. It defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. T ...
schemas. A complete document that consists of just the MathML example above, is shown here: a x2 +bx +c


Content MathML

Content MathML focuses on the semantics, or meaning, of the expression rather than its layout. Central to Content MathML is the element that represents function application. The function being applied is the first child element under , and its operands or parameters are the remaining child elements. Content MathML uses only a few attributes. Tokens such as identifiers and numbers are individually marked up, much as for Presentation MathML, but with elements such as and . Rather than being merely another type of token, operators are represented by specific elements, whose mathematical semantics are known to MathML: , , etc. There are over a hundred different elements for different functions and operators. For example, represents \sin(x) and represents x+5. The elements representing operators and functions are empty elements, because their operands are the other elements under the containing . The expression a x^2+b x+c could be represented as a x 2 b x c Content MathML is nearly isomorphic to expressions in a functional language such as
Scheme A scheme is a systematic plan for the implementation of a certain idea. Scheme or schemer may refer to: Arts and entertainment * ''The Scheme'' (TV series), a BBC Scotland documentary series * The Scheme (band), an English pop band * ''The Schem ...
. amounts to Scheme's , and the many operator and function elements amount to Scheme functions. With this trivial literal transformation, plus un-tagging the individual tokens, the example above becomes: (plus (times a (power x 2)) (times b x) c) This reflects the long-known close relationship between XML element structures, and LISP or Scheme S-expressions.


Wikidata annotation in Content MathML

According to the OM Society, OpenMath Content Dictionaries can be employed as collections of symbols and identifiers with declarations of their semanticsnames, descriptions and rules. A 2018 paper presented at the SIGIR conference proposed that the semantic knowledge base Wikidata could be used as an OpenMath Content Dictionary to link semantic elements of a mathematical formula to unique and language-independent Wikidata items.


Example and comparison to other formats

The well-known
quadratic formula In elementary algebra, the quadratic formula is a formula that provides the solution(s) to a quadratic equation. There are other ways of solving a quadratic equation instead of using the quadratic formula, such as factoring (direct factoring, ...
: : x = \frac would be marked up using LaTeX syntax like this: x = \frac in troff/eqn like this: x = over 2a in Apache OpenOffice Math and
LibreOffice Math LibreOffice () is a free and open-source office productivity software suite, a project of The Document Foundation (TDF). It was forked in 2010 from OpenOffice.org, an open-sourced version of the earlier StarOffice. The LibreOffice suite consi ...
like this (all three are valid): x = over x = over x = over in AsciiMath like this: x = (-b +- sqrt(b^2 - 4ac))/(2a) The above equation could be represented in Presentation MathML as an expression tree made up from layout elements like ''mfrac'' or ''msqrt'' elements: x = b ± b2 4ac 2 a x = \frac x = over This example uses the element, which can be used to embed a semantic annotation in non-XML format, for example to store the formula in the format used by an equation editor such as
StarMath StarOffice is a discontinued proprietary office suite, intended to compete with the marketing-leading Microsoft Office. It served as the basis for open-source suites OpenOffice.org and LibreOffice. StarOffice supported the OpenOffice.org XML ...
or the markup using LaTeX syntax. The field is usually a MIME type, although most of the equation encodings don't have such a registration; freeform text may be used in such case. Although less compact than TeX, the XML structuring promises to make it widely usable, allows instant display in applications such as
Web browser A web browser is application software for accessing websites. When a user requests a web page from a particular website, the browser retrieves its files from a web server and then displays the page on the user's screen. Browsers are used o ...
s, and facilitates an interpretation of its meaning in mathematical software products. MathML is not intended to be written or edited directly by humans.


Embedding MathML in HTML/XHTML files

MathML, being XML, can be embedded inside other XML files such as XHTML files using XML namespaces. Browsers such as Firefox 3+ and Opera 9.6+ (support incomplete) can display Presentation MathML embedded in XHTML. Example of MathML embedded in an XHTML file

Example of MathML embedded in an XHTML file

The area of a circle is π r 2 .

Inline MathML is also supported in HTML5 files in the current versions of
WebKit WebKit is a browser engine developed by Apple and primarily used in its Safari web browser, as well as on the iOS and iPadOS version of any web browser. WebKit is also used by the BlackBerry Browser, PlayStation consoles beginning from the ...
( Safari and JavaFX/WebView ), Gecko ( Firefox). There is no need to specify namespaces like in the XHTML. Example of MathML embedded in an HTML5 file

Example of MathML embedded in an HTML5 file

The area of a circle is π r 2 .


Browser support

Of the major
web browser A web browser is application software for accessing websites. When a user requests a web page from a particular website, the browser retrieves its files from a web server and then displays the page on the user's screen. Browsers are used o ...
s, Gecko-based browsers (e.g., Firefox) have the most complete native support for MathML. While the
WebKit WebKit is a browser engine developed by Apple and primarily used in its Safari web browser, as well as on the iOS and iPadOS version of any web browser. WebKit is also used by the BlackBerry Browser, PlayStation consoles beginning from the ...
layout engine has a development version of MathML, this feature is only available in version 5.1 and higher of Safari, Chrome 24 but not in later versions of Chrome. Google removed support of MathML claiming architectural security issues and low usage do not justify their engineering time. , the WebKit/Safari implementation has numerous bugs. JavaFX/WebView. Also based on WebKit, the JavaFX embedded web browser supports MathML starting with JavaFX 8 Update 192 and JavaFX 11 versions. Support is broken, in JavaFX 8 previous versions, JavaFX 9 and JavaFX 10. Opera, between version 9.5 and 12, supports MathML for CSS profile, but is unable to position diacritical marks properly. Prior to version 9.5 it required User JavaScript or custom stylesheets to emulate MathML support. Starting with Opera 14, Opera drops support for MathML by switching to the Chromium 25 engine. Microsoft Edge does not support MathML, nor are there plans to add support.
Internet Explorer Internet Explorer (formerly Microsoft Internet Explorer and Windows Internet Explorer, commonly abbreviated IE or MSIE) is a series of graphical web browsers developed by Microsoft which was used in the Windows line of operating systems (in ...
does not support MathML natively. Support for IE6 through IE9 can be added by installing the
MathPlayer Mathematical Markup Language (MathML) is a mathematical markup language, an application of XML for describing mathematical notations and capturing both its structure and content. It aims at integrating mathematical formulae into World Wide We ...
plugin. IE10 has some crashing bugs with MathPlayer and Microsoft decided to completely disable in IE11 the binary plug-in interface that MathPlayer needs. MathPlayer has a license that may limit its use or distribution in commercial webpages and software. Using or distributing the MathPlayer plugin to display HTML content via the WebBrowser control in commercial software may also be forbidden by this license. The KHTML-based Konqueror currently does not provide support for MathML. The quality of rendering of MathML in a browser depends on the installed fonts. The STIX Fonts project have released a comprehensive set of mathematical fonts under an open license. The Cambria Math font supplied with Microsoft Windows had a slightly more limited support. According to a member of the MathJax team, none of the major browser makers paid any of their developers for any MathML-rendering work; whatever support exists is overwhelmingly the result of unpaid volunteer time/work. In 2015 the MathML Association was founded to support the adoption of the MathML standard.


Other standards

Another standard called
OpenMath OpenMath is the name of a markup language for specifying the meaning of mathematical formulae. Among other things, it can be used to complement MathML, a standard which mainly focuses on the presentation of formulae, with information about their ...
that has been designed (largely by the same people who devised Content MathML) more specifically for storing formulae semantically can also be used to complement MathML. OpenMath data can be embedded in MathML using the element. OpenMath ''content dictionaries'' can be used to define the meaning of elements. The following would define ''P''1(''x'') to be the first Legendre polynomial P1 x The
OMDoc OMDoc (Open Mathematical Documents) is a semantic markup format for mathematical documents. While MathML only covers mathematical formulae and the related OpenMath standard only supports formulae and “content dictionaries” containing definitio ...
format has been created for markup of larger mathematical structures than formulae, from statements like definitions, theorems, proofs, or example, to theories and text books. Formulae in OMDoc documents can either be written in Content MathML or in OpenMath; for presentation, they are converted to Presentation MathML. The ISO/
IEC The International Electrotechnical Commission (IEC; in French: ''Commission électrotechnique internationale'') is an international standards organization that prepares and publishes international standards for all electrical, electronic and r ...
standard Office Open XML (OOXML) defines a different XML math syntax, derived from Microsoft Office products. However, it is partially compatible through relatively simple
XSL Transformations XSLT (Extensible Stylesheet Language Transformations) is a language originally designed for transforming XML documents into other XML documents, or other formats such as HTML for web pages, plain text or XSL Formatting Objects, which may subse ...
.


See also

*
CSS Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language such as HTML or XML (including XML dialects such as SVG, MathML or XHTML). CSS is a cornerstone technolo ...
*
List of document markup languages The following is a list of document markup languages. You may also find the List of markup languages of interest. Well-known document markup languages * HyperText Markup Language (HTML) – the original markup language that was defined as a part ...
* Comparison of document markup languages * Formula editors *
LaTeX2HTML Latex is an emulsion (stable dispersion) of polymer microparticles in water. Latexes are found in nature, but synthetic latexes are common as well. In nature, latex is found as a milky fluid found in 10% of all flowering plants (angiosperms ...
* LaTeXML *
KaTeX Katex (; av, Катихъ) is a village at the foot of the Caucasian Mountains and the second most populous municipality in the Balakan District of Azerbaijan. The village (called Katekhi () in Georgian) and its Katekhi Church are mentioned by ...
JavaScript library that converts LaTeX to MathML *
MathJax MathJax is a cross-browser JavaScript library that displays mathematical notation in web browsers, using MathML, LaTeX and ASCIIMathML markup. MathJax is released as open-source software under the Apache License. The MathJax project sta ...
JavaScript library that converts LaTeX to MathML


Notes


References


Further reading


Specifications


W3C Recommendation: Mathematical Markup Language (MathML) 1.01 Specification

W3C Recommendation: Mathematical Markup Language (MathML) Version 2.0 (Second Edition)

W3C Recommendation: Mathematical Markup Language (MathML) Version 3.0 (Third Edition)


External links


W3C Math Home
– Contains the specifications, a FAQ, and a list of supporting software. *
web-xslt
a collection of XSLT programs for handling MathML (e.g. converting Content MathML to Presentation MathML, converting Presentation MathML to TeX) {{DEFAULTSORT:Mathml Mathematical markup languages XML markup languages XML-based standards World Wide Web Consortium standards Articles with example Scheme (programming language) code