Answers:
在2010年和2013年,它非常简单
1)主页标签>替换(单击更多箭头)>替换字体
上面的建议将允许您更改标题/正文/等中任何文本的字体。占位符(新幻灯片上显示的“单击此处”内容)。不会影响其他文字;为此,您需要使用一些VBA。
Sub TextFonts()
Dim oSl As Slide
Dim oSh As Shape
Dim sFontName As String
' Edit this as needed:
sFontName = "Times New Roman"
With ActivePresentation
For Each oSl In .Slides
For Each oSh In oSl.Shapes
With oSh
If .HasTextFrame Then
If .TextFrame.HasText Then
.TextFrame.TextRange.Font.Name = sFontName
End If
End If
End With
Next
Next
End With
End Sub