Quote:
Originally Posted by Stefan Blom
The following two macros remove the superscript from the footnote number and adds a tab stop.
|
It also adds a period after the footnote number. Neither may be desirable, in which case, change:
Code:
With Selection
.Paragraphs(1).Range.Font.Reset
.Paragraphs(1).Range.Characters(2) = ""
.InsertAfter "." & vbTab
.Collapse wdCollapseEnd
End With
to:
Code:
With Selection
.Start = .Start - 1
.Text = vbTab
.Collapse wdCollapseEnd
End With