mathml2tex 将MathML转换回Math-Tex,但仅支持MathML语法的子集(但扩展它非常简单)。 在Python 2.7上运行,也可以在Python 3.x上运行。 要求 BeautifulSoup 4.要安装它,只需运行 pip install bs4 用法 from mathml2tex import MathMLTeX m = MathMLTeX () xml = '''<math xmlns="http://www.w3.org/1998/Math/MathML"> 2 </math>''' m . convert ( xml ) # -> '\\sqrt{2}'
2022-11-01 20:12:51 3KB python tex mathml mathtex
1