MathML to LaTeX conversion

后端 未结 3 1576
慢半拍i
慢半拍i 2021-02-08 06:46

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...



        
3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-08 07:10

    I had similar problem and mathparser provided in url from question wasn't working for me at all.

    I converted MathML to LaTeX by using XSLT MathML Library with Saxon-HE but since XSLT MathML library is pure XSLT any XSLT transformation tool should handle it. Output is not always perfect but it gave me better results than web-xslt mentioned somewhere at stackexchange network.

    Command line usage with saxon:

    saxon -o output.tex input.mml xsltml_2.1.2/mmltex.xsl
    

提交回复
热议问题