A family of Microsoft word processing software products for creating web, email, and print documents.
For footnotes, specifically, you can add a couple of macros to your Normal template that intercept the built-in InsertFootnote and InsertFootnoteNow commands. The prerequisite is that you modify the Footnote Text style to include a hanging indent.
Sub InsertFootnote()
'Based on macros from wordmvp.com, minor changes by Stefan Blom, MVP
ActiveDocument.Footnotes.Add Range:=Selection.Range
With Selection
.Paragraphs(1).Range.Font.Reset
.Paragraphs(1).Range.Characters(2) = ""
.InsertAfter "." & vbTab
.Collapse wdCollapseEnd
End With
ActiveWindow.ScrollIntoView Selection.Range
End Sub
Sub InsertFootnoteNow()
'Based on macros from wordmvp.com, minor changes by Stefan Blom, MVP
ActiveDocument.Footnotes.Add Range:=Selection.Range
With Selection
.Paragraphs(1).Range.Font.Reset
.Paragraphs(1).Range.Characters(2) = ""
.InsertAfter "." & vbTab
.Collapse wdCollapseEnd
End With
ActiveWindow.ScrollIntoView Selection.Range
End Sub