MathML to LaTeX conversion(MathML 到 LaTeX 的转换)
问题描述
我试图弄清楚如何转换数学方程的 MathML 表示并将其转换为该数学方程的 LaTeX 表示.比如……
I'm trying to figure out how to convert a MathML representation of a math equation and convert it to the LaTeX representation of that math equation. So for example...
<math>
<mrow>
<mfrac>
<mrow><mi>x</mi></mrow>
<mrow><mi>y</mi></mrow>
</mfrac>
</mrow>
</math>
... 是一个简单的堆叠分数,它的 LaTeX 表示将是...
... is a simple stacked fraction and it's LaTeX representation would be...
frac{x}{y}
我保证 MathML 没有表示性标记,因为我正在动态构造 MathML 字符串并且我控制 MathML 元素的插入方式/位置;MathML 字符串只是数学方程的纯结构.
I'm guaranteed that the MathML has no presentational markup because I am constructing the MathML string dynamically and I control how/where the MathML elements are inserted; the MathML string is just pure structure of the math equation.
所以我的问题是,是否有任何 Java/JavaScript 库可以采用 MathML 输入字符串(如上面的那个)并生成相应的 LaTeX 字符串?我宁愿不必自己编写这个解析器.如果不是 Java/JavaScript,是否有任何库可以做到这一点?
So my question is, are there any Java/JavaScript libraries out there that can take a MathML input string, like the one above, and generate the corresponding LaTeX string? I would much rather not have to write this parser myself. If not Java/JavaScript, are any libraries at all that can do this?
如果没有,关于如何解决编写我自己的解析器这个问题的任何建议?从哪里开始、要考虑的事情、资源等...?
If not, any suggestions on how to approach this problem of writing my own parser? Where to start, things to consider, resources, etc...?
感谢 Optimal Cynic,我能够使用 这个 Java 库 来做我想做的事.然而,它并不完美,但我可以轻松地对其进行修改并使其正常工作.但是,我仍然希望在 JavaScript 中看到这一点.那么有没有像这样用 JavaScript 编写的工具呢?如果没有,我会自己翻译.
Thanks to Optimal Cynic, I was able to use this Java library to do what I want. It is not perfect however, but I can easily modify it and make it work well. However, I would still like to see this done in JavaScript. So are there any tools like this written in JavaScript? If not, I'll resort to translating it myself.
注意:我正在使用 MathJax 在页面上呈现 MathML,但 MathJax 目前不支持一种从 MathML 到 LaTeX 的方法.它只能从 LaTeX 转到 MathML.
Note: I am using MathJax to render the MathML on the page, but MathJax does not currently support a way to go from MathML to LaTeX. It can only go from LaTeX to MathML.
推荐答案
试试http://www.tilman.de/programme/mathparser/anleitung_en.html - 它是用 Java 编写的,源代码可用.
Try http://www.tilman.de/programme/mathparser/anleitung_en.html - it's written in Java and the source is available.
这篇关于MathML 到 LaTeX 的转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MathML 到 LaTeX 的转换
基础教程推荐
- 如何强制对超级方法进行多态调用? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01