Inserting Unlinked Sections
December 2, 2005 – 12:00 pmMicrosoft 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=17161470 63
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=17126660 67
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=17069228 55
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=17074449 86
http://lists.topica.com/lists/editorium/read/message.html?mid=17072868 67
http://lists.topica.com/lists/editorium/read/message.html?mid=17130889 39
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/
_____________________________________________________
THE FINE PRINT
Editorium Update (ISSN 1534-1283) is published by:
The EDITORIUM, LLC
Microsoft Word Add-Ins for Publishing Professionals
http://www.editorium.com
Copyright © 2008 by the Editorium. All rights reserved. Editorium Update and Editorium are trademarks of the Editorium.
You may forward copies of Editorium Update to yourself and others (but not charge for it) and print or store it for your own use. Any other broadcast, publication, retransmission, copying, or storage, without written permission from the Editorium, is prohibited. Send reprint requests to reprints [at symbol] 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 assumes the entire risk as to the accuracy and use of this document.
The Editorium is not affiliated with Microsoft Corporation.
_____________________________________________________
HOW TO SUBSCRIBE OR UNSUBSCRIBE
To subscribe, send a blank email message to editorium-subscribe [at symbol] topica.com.
To unsubscribe, send a blank email message to editorium-unsubscribe [at symbol] topica.com.
We do not sell, rent, or give our subscriber list to anyone.
____________________________________________________
You must be logged in to post a comment.