数学表达式到MathML
本文关键字:MathML 表达式 | 更新日期: 2023-09-27 18:26:00
我正试图在这个网站上构建功能,用户将在文本区域输入数学表达式,并将其呈现为MathML格式。
示例:
Input expression string: cos(x^3)
Then the expression should be converted to MathML as:
<math xmlns='http://www.w3.org/1998/Math/MathML'>
<mrow>
<mi>cos</mi>
<mo>⁡</mo>
<mo>(</mo>
<msup>
<mi>x</mi>
<mn>3</mn>
</msup>
<mo>)</mo>
</mrow>
</math>
什么是C#解决方案?
我从以前的解析器创建了一个MathML解析器的基本表达式。您可以在BitBucket下载或分叉结果。(左侧的下载链接)。
使用Parser
类的ToMathML(expression)
方法将表达式转换为MathML。
它还附带了一个用于测试解析器的命令行测试程序,用于生成MathML的命令是ml:
calc ~:> ml cos(x^3)
<math xmlns='http://www.w3.org/1998/Math/MathML'><mrow><mi>cos</mi><mrow><mrow><mo>(</mo><mrow><msup><mi>x</mi><mn>3</mn></msup></mrow><mo>)</mo></mrow></mrow></mrow></math>
calc ~:> ml 1/(x-1)
<math xmlns='http://www.w3.org/1998/Math/MathML'><mrow><mfrac><mn>1</mn><mrow><mrow><mo>(</mo><mrow><mi>x</mi><mo>-</mo><mn>1</mn></mrow><mo>)</mo></mrow></mrow></mfrac></mrow></math>
calc ~:>
解析器中没有隐含的乘法,因此必须始终在表达式中使用*(如2*x)。
希望它对您的场景有用。我想这取决于你需要它的完整性。在它的当前形式中,解析器会将表达式转换为MathML的一个非常基本的子集。
请随意分叉并继续处理。