MathType 방정식에서 찾기 및 바꾸기

MathType 방정식에서 찾기 및 바꾸기

모든 MathType 방정식에서 으로 Det변경할 수 있나요 ?det

답변1

사용 중인 Word 버전과 OS에 대해서는 언급하지 않았지만 다음 매크로는 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 메서드의 모든 매개 변수에 대한 설명을 찾을 수 있습니다.여기.

관련 정보