4 Methods to Remove Footnote or Endnote Separator in Your Word Document

In this post, we would like to share with you 4 methods to remove footnote or endnote separator in your Word document.

If you ever insert a footnote or endnote into document, you will find there is always a horizontal line over the texts. This separator marks out the footnote or endnote area clearly. Yet, some people may find it annoying and would like to get rid of it. This article will provide you with 4 methods to do so.Remove Footnote or Endnote Separator

Method 1: Remove Footnote Separator Manually

  1. Firstly, click “View” tab then click “Draft” view.Click "View"->Click "Draft"
  2. Next click “References” and then click “Show Notes” in “Footnotes” area.
  3. Now if your document contains both footnotes and endnotes, then there will be a box popping up. Choose to view either footnote or endnote area, then click “OK”. Now let’s choose “View footnote area” first.Click "References"->Click "Show Notes"->Choose an area->Click "OK"
  4. A note pane shall open at the bottom of the screen. Click the drop-down button to select “Footnote Separator”.
  5. Then click to have the separator in selection. Press either “Backspace” or “Delete” to remove the separator.Click the drop-down button->Choose "Footnote Separator"->Select the footnote separator
  6. And choose “Footnote Continuation Separator” then and delete it as well.Choose "Footnote Continuation Separator" ->Select the Separator
  7. When you get rid of the separator, there will be a blank line left which you can’t delete directly. Here we come up with a workaround. Endure the “Footnote Separator” is chosen.A Blank Line Left
  8. Then click “Home” tab and click the arrow button in “Paragraph” group to open the same name dialog box.
  9. Choose “Multiple” for “Line spacing”, set the value at “0.06” and click “OK”.Click "Home"->Click the arrow button to open "Paragraph" box->Select "Multiple" for "Line spacing"->Set the value at 0.06->Click "OK"
  10. Now the height of the blank line is reduced to the least. You can change the view back to “Print Layout”.Narrow down the height of the blank line

Check the result bellow:Removal of footnote separator

Method 2: Remove Endnote Separator Manually

  1. Repeat first 3 steps in method 1 but choose “View endnote area” this time in “Show Notes” box.Choose "View endnote area"->Click "OK"
  2. In the note pane open at the bottom, choose “Endnote Separator” and select the separator. Then delete it.Choose "Endnote Separator"->Select the Separator
  3. Next choose “Endnote Continuation Separator” and select the separator and delete it.Choose "Endnote Continuation Separator"->Select the Separator
  4. Then choose “Endnote Separator” again by clicking the drop-down button.
  5. And repeat from step 8 to 10 in method 1.

Here is the result:Effect of removing endnote separator

Method 3: Remove Footnote Separator by Running Macro

  1. To begin with, press “Alt+ F11” to trigger the VBA editor in Word.
  2. Next click “Normal” then “Insert” tab.
  3. And choose “Module” next.Click "Normal"->Click "Insert"->Click "Module"
  4. Then double click to open it and paste the macro there:
Sub DeleteTheFootnoteSeparator()

  If ActiveWindow.View.SplitSpecial = wdPaneNone Then
    ActiveWindow.ActivePane.View.Type = wdNormalView
  Else
    ActiveWindow.View.Type = wdNormalView
  End If
 
  If ActiveWindow.ActivePane.View.Type = wdPrintView Or ActiveWindow.ActivePane.View.Type = wdWebView Or _
    ActiveWindow.ActivePane.View.Type = wdPrintPreview Then
    ActiveWindow.View.SeekView = wdSeekFootnotes
  Else
    ActiveWindow.View.SplitSpecial = wdPaneFootnotes
  End If
 
  '  Delete the footnote separator. 
  ActiveWindow.View.SplitSpecial = wdPaneFootnoteSeparator
  Selection.MoveRight Unit:=wdCharacter, Count:=1
  Selection.TypeBackspace
  Selection.TypeBackspace
 
  '  Eliminate the blank line after deleting the footnote separator.
  With Selection.ParagraphFormat
    .LineSpacingRule = wdLineSpaceMultiple
    .LineSpacing = LinesToPoints(0.06)
  End With

  '  Delete the footnote continuation separator. 
  ActiveWindow.View.SplitSpecial = wdPaneFootnoteContinuationSeparator
  Selection.MoveRight Unit:=wdCharacter, Count:=1
  Selection.TypeBackspace
  Selection.TypeBackspace

  '  Eliminate the blank line after deleting the footnote continuation separator. 
  With Selection.ParagraphFormat
    .LineSpacingRule = wdLineSpaceMultiple
    .LineSpacing = LinesToPoints(0.06)
  End With
 
  If ActiveWindow.View.SplitSpecial = wdPaneNone Then
    ActiveWindow.ActivePane.View.Type = wdPrintView
  Else
    ActiveWindow.View.Type = wdPrintView
  End If
End Sub
  1. Click “Run”.Paste Codes->Click "Run"

The macro shall remove all footnote separators automatically and minimize the blank line left as well.

Method 4: Remove Endnote Separator by Running Macro

Follow the exact steps in method 3 to install and run a macro. Only, replace codes with these ones:

Sub DeleteTheEndnoteSeparator()

  If ActiveWindow.View.SplitSpecial = wdPaneNone Then
    ActiveWindow.ActivePane.View.Type = wdNormalView
  Else
    ActiveWindow.View.Type = wdNormalView
  End If
 
  If ActiveWindow.ActivePane.View.Type = wdPrintView Or ActiveWindow.ActivePane.View.Type = wdWebView Or _
    ActiveWindow.ActivePane.View.Type = wdPrintPreview Then
    ActiveWindow.View.SeekView = wdSeekEndnotes
  Else
    ActiveWindow.View.SplitSpecial = wdPaneEndnotes
  End If
 
  '  Delete the endnote separator.
  ActiveWindow.View.SplitSpecial = wdPaneEndnoteSeparator
  Selection.MoveRight Unit:=wdCharacter, Count:=1
  Selection.TypeBackspace
  Selection.TypeBackspace
 
  '  Eliminate the blank line after deleting the endnote separator.
  With Selection.ParagraphFormat
    .LineSpacingRule = wdLineSpaceMultiple
    .LineSpacing = LinesToPoints(0.06)
  End With
 
  '  Delete the endnote continuation separator. 
  ActiveWindow.View.SplitSpecial = wdPaneEndnoteContinuationSeparator
  Selection.MoveRight Unit:=wdCharacter, Count:=1
  Selection.TypeBackspace
  Selection.TypeBackspace

  '  Eliminate the blank line after deleting the endnote continuation separator. 
  With Selection.ParagraphFormat
    .LineSpacingRule = wdLineSpaceMultiple
    .LineSpacing = LinesToPoints(0.06)
  End With
  If ActiveWindow.View.SplitSpecial = wdPaneNone Then
    ActiveWindow.ActivePane.View.Type = wdPrintView
  Else
    ActiveWindow.View.Type = wdPrintView
  End If
End Sub

Save Your Documents

No software is foolproof and this is very true of Word. Generally, it has been such a helpful tool for word processing. Yet, there are some down time while Word collapsing, leaving your document damaged. What’s worse, that document is the only copy you’ve got. This is so sad. But, if you choose a qualified utility to repair doc at once, you can end up with a totally different result.

Author Introduction:

Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including repair xls and pdf repair software products. For more information visit www.datanumen.com

One response to “4 Methods to Remove Footnote or Endnote Separator in Your Word Document”

Leave a Reply

Your email address will not be published. Required fields are marked *