我的word文档已创建样式,例如My_Style(我用于标题)。 我想为插图创建条目,从而获得该风格的相关数字。
我有这段代码:
Sub Macro4()
'
' Macro4 Macro
'
'
With CaptionLabels("Illustration")
.NumberStyle = wdCaptionNumberStyleArabic
.IncludeChapterNumber = True
.ChapterStyleLevel = 2
.Separator = wdSeparatorHyphen
End With
Selection.Style = ActiveDocument.Styles("My_Style")
Selection.InsertCaption Label:="Ilustración", TitleAutoText:= _
"InsertTitle4", Title:="", Position:=wdCaptionPositionAbove, _
ExcludeLabel:=0
End Sub
结果说插图错误!
我认为错误是宏正在使用Style Title1从word创建条目,但我没有任何带有该样式的文本,因为我使用自己创建的样式。
我不知道在哪里可以指出我想用我的风格来创建条目。
谢谢。