Inserting Unlinked Sections

Microsoft Word, in a broad sense, has two kinds of section breaks (Insert > Break):

1. The kind that starts a new page (which includes "Next page," "Even page," and "Odd page).

2. The kind that doesn't (which includes "Continuous").

The second kind is used for such things as inserting two-column text in the middle of single-column text, all on the same page, and it doesn't concern us here. What does concern us, as editors, is what happens when we insert a section break that starts a new page.

By default, Word "links" the headers and footers in the new section to those in the previous section. In other words, when you insert a section break, the headers and footers will be the same in the new section as in the old. If you're working as an office assistant and spend most of your time formatting letters and reports, that might be exactly what you want. But if you're a book editor, that's probably *not* what you want. You probably want each section (that is, each *chapter*) to have its own headers and footers, as explained here:

http://lists.topica.com/lists/editorium/read/message.html?mid=1716147063

In a previous newsletter, I supplied a macro that would unlink *all* headers and footers en masse:

http://lists.topica.com/lists/editorium/read/message.html?mid=1712666067

But wouldn't it be nice to be able to simply insert an *unlinked* section break? Here's a macro that will do just that, using a break of the "Next page" variety:


Sub InsertUnlinkedNextpageSection()
Selection.InsertBreak Type:=wdSectionBreakNextPage
If ActiveWindow.View.SplitSpecial <> wdPaneNone Then
ActiveWindow.Panes(2).Close
End If
If ActiveWindow.ActivePane.View.Type = wdNormalView Or ActiveWindow. _
ActivePane.View.Type = wdOutlineView Then
ActiveWindow.ActivePane.View.Type = wdPrintView
End If
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
Selection.HeaderFooter.LinkToPrevious = Not Selection.HeaderFooter. _
LinkToPrevious
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
End Sub

If you don't know how to use such macros, you can learn how here:

http://lists.topica.com/lists/editorium/read/message.html?mid=1706922855

Note that you can modify the macro to insert an odd-page section break or an even-page section break, which are particularly useful in book publishing. To do so, change this line--

Selection.InsertBreak Type:=wdSectionBreakNextPage

to this--

Selection.InsertBreak Type:=wdSectionBreakOddPage

or this--

Selection.InsertBreak Type:=wdSectionBreakEvenPage

For ease of use, I'd recommend that you hook the macro to a menu, toolbar button, or keyboard shortcut, as explained here:

http://lists.topica.com/lists/editorium/read/message.html?mid=1707444986

http://lists.topica.com/lists/editorium/read/message.html?mid=1707286867

http://lists.topica.com/lists/editorium/read/message.html?mid=1713088939

Then, the next time you insert a section break (using the macro, of course), it will be automatically unlinked!

_________________________________________

RESOURCES

You'll find a very nice tutorial on sections, section breaks, and headers and footers at Charles Kenyon's AddBalance website:

http://www.addbalance.com/usersguide/sections.htm

Especially if you work in a legal environment, you'll find many other useful resources at the site. Don't overlook the complete, downloadable User Guide (scroll down to the bottom of the page):

http://www.addbalance.com/usersguide/

This entry was posted in Typesetting. Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

Post a Comment

You must be logged in to post a comment.

  • The Fine Print

    Thanks for reading Editorium Update (ISSN 1534-1283), published by:

    The EDITORIUM, LLC
    http://www.editorium.com

    Articles © on date of publication by the Editorium. All rights reserved. Editorium Update and Editorium are trademarks of the Editorium.

    You may forward copies of Editorium Update to others (but not charge for it) and print or store it for your personal use. Any other broadcast, publication, retransmission, copying, or storage, without written permission from the Editorium, is strictly prohibited. If you’re interested in reprinting one of our articles, please send an email message to editor@editorium.com

    Editorium Update is provided for informational purposes only and without a warranty of any kind, either express or implied, including but not limited to implied warranties of merchantability, fitness for a particular purpose, and freedom from infringement. The user (you) assumes the entire risk as to the accuracy and use of this document.

    The Editorium is not affiliated with Microsoft Corporation or any other entity.

    We do not sell, rent, or give our subscriber list to anyone. Period.

    If you’d like to subscribe, please enter your name and email address below. We publish the newsletter once a week, and on rare occasions we may send an important announcement. We never, ever send spam. Thank you for signing up!