How do I create a new footnote reference mark?

T

TL

My boss likes to use parentheses around the numbers for footnotes. I would
like to know if there is a way I can create a numbering format, using
continuous numbering, with parentheses around the numbers? If so, how do I do
this?
 
M

macropod

Hi TL,

Assuming you're using proper Word footnotes, you could run the following macro periodically:

Sub FootnoteBracketer()
Dim oFtNt As Footnote
For Each oFtNt In ActiveDocument.Footnotes
With oFtNt.Reference
If .Characters.First.Previous <> "(" Then .InsertBefore "("
If .Characters.Last.Next <> ")" Then .InsertAfter ")"
.Characters.First.Font.Superscript = True
.Characters.Last.Font.Superscript = True
End With
Next
End Sub
 
P

Peter T. Daniels

I think it was just yesterday someone (responding to a question about
"footnotes in Arabic") suggested a Find-Replace with wildcards.

Hi TL,

Assuming you're using proper Word footnotes, you could run the following macro periodically:

Sub FootnoteBracketer()
Dim oFtNt As Footnote
For Each oFtNt In ActiveDocument.Footnotes
  With oFtNt.Reference
    If .Characters.First.Previous <> "(" Then .InsertBefore "("
    If .Characters.Last.Next <> ")" Then .InsertAfter ")"
    .Characters.First.Font.Superscript = True
    .Characters.Last.Font.Superscript = True
  End With
Next
End Sub

--
Cheers
macropod
[Microsoft MVP - Word]



TL said:
My boss likes to use parentheses around the numbers for footnotes. I would
like to know if there is a way I can create a numbering format, using
continuous numbering, with parentheses around the numbers? If so, how do I do
this?-
 

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