powerponit 使用vba编程插入公式
时间: 2023-07-11 21:39:10 浏览: 158
VBA在Powerpoint中的应用
3星 · 编辑精心推荐
您可以使用以下 VBA 代码将 LaTeX 公式插入 PowerPoint 中:
```
Sub InsertFormula()
Dim formula As String
formula = "Your LaTeX formula here"
Dim oSh As Shape
Set oSh = ActivePresentation.Slides(1).Shapes.AddOLEObject(Left:=100, Top:=100, Width:=200, Height:=100, ClassName:="Equation.3", Link:=False)
oSh.OLEFormat.Object.Formula = formula
End Sub
```
将 "Your LaTeX formula here" 替换为您要插入的公式,然后运行此代码即可将其插入到当前幻灯片的指定位置。请注意,在插入公式之前,您需要将 Equation 编辑器添加到 PowerPoint 中。
阅读全文