답변:
Slide Master를 편집해야합니다 . 모든 글꼴을 슬라이드 마스터의 모든 슬라이드에서 원하는 글꼴로 설정하십시오.
위의 제안을 통해 제목 / 본문 등의 텍스트 글꼴을 변경할 수 있습니다. 자리 표시 자 (새 슬라이드에 표시되는 "여기를 클릭하십시오"). 다른 텍스트에는 영향을 미치지 않습니다. 이를 위해서는 약간의 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