dwml目的是将msooxml中的omml(OfficeMathMarkupLanguage)转为latex
可以将Word和Excel 编辑的公式转为Latex方便其它地方(如浏览器)显示。
使用
fromdwmlimportommlforomathinomml.load('tests/composite.xml'):print(omath.latex)简单的docx文件处理(会改变原文件)
fromdwml.docximportto_latexto_latex(filename='tests/simple.docx')
评论