MathML - decimais de repetição
Números decimais com dígito (s) que se repetem infinitamente, como 1/3 (0,3333 ...) são representados colocando uma linha horizontal acima ou abaixo dos dígitos que se repetem. Os elementos <mstack>, <msrow> e <msline> podem ser usados para criar números decimais com dígitos repetidos, conforme mostrado abaixo.
Exemplo
Exemplo 1
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mstack stackalign = "right">
<msline length = "1"/>
<mn> 0.3333 </mn>
</mstack>
</math>
Resultado
Exemplo 2
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mstack stackalign="right">
<msline length="6"/>
<mn> 0.142857 </mn>
</mstack>
</math>
Resultado
Exemplo 3
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mstack stackalign="right">
<mn> 0.142857 </mn>
<msline length="6"/>
</mstack>
</math>