Sub clear_superscript()
Selection.HomeKey Unit:=wdStory
Do
Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend
If Selection.Font.Position > 0 Then Selection.Delete Unit:=wdCharacter, Count:=1
Selection.MoveRight Unit:=wdCharacter, Count:=1
If Selection.End = ActiveDocument.Range.End - 1 Then Exit Do
Loop
End Sub
Sub clear_endnotes()
n = ActiveDocument.Endnotes.Count
For c = 1 To n
ActiveDocument.Endnotes(1).Delete
Next
End Sub
Sub clear_footnotes()
n = ActiveDocument.Footnotes.Count
For c = 1 To n
ActiveDocument.Footnotes(1).Delete
Next
End Sub
Sub clear_bookmarks()
n = ActiveDocument.Bookmarks.Count
For c = 1 To n
ActiveDocument.Bookmarks(1).Delete
Next
End Sub