样本例子,
yes -> <math xmlns="http://www.w3.org/1998/Math/MathML"><mi>y</mi><mi>e</mi><mi>s</mi></math>
99 -> <math xmlns="http://www.w3.org/1998/Math/MathML"><mn>99</mn></math>对于给定的输入,我想得到相应的mathml表达式。我这么做是因为mathtype.setMathML(99)不能工作,应该是mathtype.setMathML(<math xmlns="http://www.w3.org/1998/Math/MathML"><mn>99</mn></math>) --我使用的是网站。
发布于 2020-06-27 18:42:16
<mtext>加入了救援行动。我们可以使用它来渲染数字或字符。
mathtype.setMathML(<math xmlns="http://www.w3.org/1998/Math/MathML"><mtext>{NUMBER or CHARACTERS}</mtext></math>)https://stackoverflow.com/questions/62590599
复制相似问题