Los números decimales que tienen dígitos que se repiten infinitamente como 1/3 (.3333 ...) se representan colocando una línea horizontal sobre o debajo de los dígitos que se repiten. Los elementos <mstack>, <msrow> y <msline> se pueden usar para crear números decimales con dígitos repetidos como se muestra a continuación.
Ejemplo
Ejemplo 1
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mstack stackalign = "right">
<msline length = "1"/>
<mn> 0.3333 </mn>
</mstack>
</math>
Salida
Ejemplo 2
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mstack stackalign="right">
<msline length="6"/>
<mn> 0.142857 </mn>
</mstack>
</math>
Salida
Ejemplo 3
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mstack stackalign="right">
<mn> 0.142857 </mn>
<msline length="6"/>
</mstack>
</math>
Salida