我想编写一个程序来从 .docx 文件中检索方程(公式)。我正在使用 open xml sdk,但看不到如何在 .docx 文件中插入方程式。一张图片(代表方程式)是我能在那里找到的唯一东西。如何从 .docx 文件中提取方程式?那可能吗?
问问题
1367 次
2 回答
1
之前的答案没有回应这个问题!
如果您检查 xml 文档树并打开文件 document.xml,您将看到类似以下内容:
<m:oMath><m:r><w:rPr><w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math"/></w:rPr><m:t>x= y</m:t>
(在上面的例子中,等式是“x=y”。标签表示一个等式。
于 2019-08-20T05:11:23.780 回答
0
You might be able to select the text in each equation editor object an copy it out to another document or something by following the VBA section in this link:
http://www.extendoffice.com/documents/word/751-word-select-equation.html
That's what I'd try anyway!
于 2013-02-21T16:26:28.017 回答