有没有办法在 Word 2007 文档中搜索方程式?

FMc*_*FMc 6 search visual-basic equations microsoft-word

我有许多大型 Word 2007 文档,每个文档都包含几十个方程式。有没有办法使用 Word 的“查找”命令来查找方程,还是我必须用老方法来寻找它们?

我尝试搜索图形 ( ^g) 和字段 ( ^d),但这并没有成功。我错过了一些明显的东西吗?有没有办法使用 VB 或其他一些技巧来做到这一点?

更新

Office 2007 中的“转到方程式”功能似乎已损坏。可以从 Word 的“查找”对话框上的“转到”选项卡访问该功能。

请参阅此处的一些讨论。

另外,在 VB 中可以观察到以下内容:

' Works: advances to the next footnote.
Sub GoToFootnote()
    Selection.GoTo What:=wdGoToFootnote
End Sub

' Does nothing, even though wdGoToEquation is a
' documented item in the WdGoToItem enumeration.
Sub GoToEquation()
    Selection.GoTo What:=wdGoToEquation
End Sub
Run Code Online (Sandbox Code Playgroud)

解决方法

Find
-> More
-> Format
-> Font = Cambria Math   (or whatever font your equations use)
Run Code Online (Sandbox Code Playgroud)

小智 2

您需要“转到”对话框。您可以通过键入 ctrl + g 或在“主页”选项卡上单击“查找”按钮上的下拉菜单并选择“转到”来获取它。

通过“转至”对话框,您可以转至方程式。您将在框左侧的列表中看到它。