Word 2010 and earlier have a Compatibility Option, "Suppress Space Before after a hard page or column break." By default, this option is not enabled in those versions. Unfortunately, Word 2013 and above enable this option by default and don't give you a
choice. So the only (simple) recourse you have if you want this to work (and I ignore kludges such as adding an empty paragraph) is to save the document in Word 2010 format. This is not an option that Word provides in the Save As dialog; it requires a simple
one-line macro (courtesy of Jay Freedman):
- Press Alt+F11 to open the VBA editor.
- Press Ctrl+G to open the Immediate window at the bottom of the editor.
- In that window, paste this line and then press Enter:
ActiveDocument.SetCompatibilityMode wdWord2010
4. Close the VBA editor.
5. Go to File | Options | Advanced and scroll to the bottom.
6. Change the dropdown "Lay out this document as if created in" to "Microsoft Word 2010". At that point, the list of 2010 Layout Options will appear below the dropdown.
If the "Suppress" option is enabled, disable it. Your document will be in Compatibility Mode, and you will not be able to use features introduced in Word 2013 and above, but that may not matter for this particular document.