vbscript 将方程式放入表中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vbscript 将方程式放入表中相关的知识,希望对你有一定的参考价值。

Sub putEquationIntoTable()
    Dim myMath As OMath
    Dim myField As Field
    For Each myMath In ActiveDocument.OMaths
        myMath.Range.Select
           Call formatEquation
    Next
    
    For Each myField In ActiveDocument.Fields
        myField.Select
        If Selection.Type = 7 Then
       
          Call formatEquation
       
        End If
    Next
End Sub
Function formatEquation()

        If Selection.Information(wdWithInTable) Then
                 
            Selection.Tables(1).Select
             Selection.Style = ActiveDocument.Styles("MDPI_equationFram")
            Else
            If Selection.Next = ChrW(13) And Selection.Previous = ChrW(13) Then
            Selection.Cut
            Call EquationFrameNo
            Selection.MoveDown wdLine, 1
            End If
        End If
End Function

以上是关于vbscript 将方程式放入表中的主要内容,如果未能解决你的问题,请参考以下文章

如何将复杂的方程放入R公式?

NetLogo-如何将平衡的化学方程式放入模型中?

vbscript 9.检测方程是否是图片格式

vbscript 8.检测方程是否按顺序编号,是否重复编号

将 SQL 数据放入 HTML 表中

vbscript 使用内容向表中添加新行