Default Figure Caption Style

  • Thread starter northwest_trail
  • Start date
N

northwest_trail

I've created a fairly elaborate template at this point. However, when I add a
figure caption (right click on figure, insert caption), it uses the "Normal"
style. I have a "Figure Caption" style that I'd prefer to use by default. Is
it possible to change this?
 
G

Graham Mayor

Word does not differentiate between the different types of caption and uses
the Caption style for all of them. If you want to insert a caption with a
particular style then you could use the following macro to display the
dialog and insert the caption in whatever style is listed - here "Figure
Caption"

Sub InsertMyCaption()
Dialogs(wdDialogInsertCaption).Show
Selection.Style = "Figure Caption"
End Sub


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top