【发布时间】:2012-05-18 01:07:09
【问题描述】:
如何编写保留 MathML 正确语法的左下标和上标?我的意思是这样的:
感谢您的提示。
【问题讨论】:
标签: mathml subscript superscript
如何编写保留 MathML 正确语法的左下标和上标?我的意思是这样的:
感谢您的提示。
【问题讨论】:
标签: mathml subscript superscript
使用<mmultiscripts> - 有关详细信息,请参阅http://www.w3.org/TR/MathML3/chapter3.html#presm.mmultiscripts。在你的情况下,它是:
<mmultiscripts>
<mi>a</mi>
<mprescripts/> <mi>c</mi> <mi>b</mi>
</mmultiscripts>
【讨论】: