MathML-반복 소수점
1/3 (.3333 ...)과 같이 무한히 반복되는 숫자를 갖는 10 진수는 반복되는 숫자 위 또는 아래에 수평선을 놓는 것으로 표시됩니다. <mstack>, <msrow> 및 <msline> 요소를 사용하여 아래와 같이 반복되는 자릿수로 10 진수를 만들 수 있습니다.
예
예 1
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mstack stackalign = "right">
<msline length = "1"/>
<mn> 0.3333 </mn>
</mstack>
</math>
산출
예 2
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mstack stackalign="right">
<msline length="6"/>
<mn> 0.142857 </mn>
</mstack>
</math>
산출
예제 3
<math xmlns = "http://www.w3.org/1998/Math/MathML">
<mstack stackalign="right">
<mn> 0.142857 </mn>
<msline length="6"/>
</mstack>
</math>