notation
Notation
Indicates that the content of the associated element will be coded in one of the
named notations.
Remarks
Implementor’s Note: Because the use of characters such as “<” and “&” can cause problems when TeX (or LaTeX) is embedded within XML, it is best practice to surround all TeX and LaTeX by a CDATA section.
Used on Element: <tex-math>
Value | Meaning |
---|---|
LaTeX | The content of the associated element will be in LaTeX. |
TEX | The content of the associated element will be in TeX. |
TeX | The content of the associated element will be in TeX. |
tex | The content of the associated element will be in TeX. |
Restriction | @notation is an optional attribute; there is no default. |
Example
...
<tex-math id="M1" notation="LaTeX" version="LaTeX2e">
<![CDATA[\documentclass{article}
\begin{document}
If $\sqrt{x} = 8$, then $x=64$.
\end{document} ]]>
</tex-math>
...