在 MathType 公式中查找和替换

在 MathType 公式中查找和替换

在所有 MathType 方程式中都可以更改Det为吗?det

答案1

您没有提到您使用的 Word 版本以及在哪个操作系统上使用,但以下宏对我而言在 Windows 上的 Word 2010 和 2013 中有效:

Dim eqn As OMath

Sub EquationSearchReplace()
    For Each eqn In ActiveDocument.OMaths
        eqn.ConvertToNormalText
        eqn.Range.Find.Execute FindText:="Det", ReplaceWith:="det", MatchCase:=True, Wrap:=wdFindContinue, Replace:=wdFindContinue
        eqn.ConvertToMathText
    Next
End Sub

可以找到 Find.Execute 方法的所有参数的描述这里

相关内容