Jack Lyon

Restoring Superscript to Note Numbers

I get manuscripts with all kinds of weird formatting, but recently I got one from which all formatting had been removed. That might have been all right, but the note reference numbers were no longer superscript; they all looked something like this.42 I wasn't about to fix all those by hand, so I came up with this solution, which I hope you'll find as useful as I did:

1. Back up your documents, just in case.

2. Call up Word's Replace dialog (Edit > Replace).

3. In the "Find What" box, enter this (just copy and paste it from this article):

([! 0123456789,:$(])([0-9]{1,})

4. In the "Replace With" box, enter this:

12

5. Click the "More" button if it's available.

6. Put a check in the "Use wildcards" checkbox.

7. Click the "Replace All" button.

8. In the "Find What" box, enter this:

(*)

9. In the "Replace With" box, enter this (formatted as superscript):

1

10. Click the "Replace All" button.

All of your note numbers should now be in glorious superscript.

Want to know more about two-step finding and replacing?

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

Want to know more about wildcard searching?

http://www.editorium.com/ftp/advancedfind.zip

Want to know how to remove directly applied document formatting without removing superscript, italic, bold, and so on?

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

_________________________________________

READERS WRITE

After reading last week's newsletter with its editorial style sheet macros, Jim Pinkham wrote:

You can also overcome the limitation on having only two Word docs open to make Hilary's macro run by simply specifying the windows you wish to switch between in the macro. For example, here's a snippet from one of mine:

Selection.SelectRow

Selection.Cut

Windows("Blue Rows.doc").Activate

Selection.Paste

Windows("Weekly Improvement Analysis March 22-28.doc").Activate

When I use this macro, I'll create a new "Weekly Improvement Analysis" doc each time--so I simply edit the file name accordingly.

--------------------

Pamela Angulo wrote:

As I read today's newsletter, 2004/05/05: Editorial Style Sheet Macro, I wondered why anyone editing and creating a style sheet on a computer would be concerned about pasting copied style terms by letter or in alphabetical order. (Organizing terms by type--names, places, scientific terminology, etc.--now, that I understand.)

I copy terms to my style sheet as I go, in the order they present themselves--more or less from top to bottom of the manuscript. For some jobs (e.g., chapters by multiple authors for the same book, or individual articles for inclusion in a single magazine issue), I keep track of chapter, article, or author for each term as well. But however I handle the initial list, I sort the terms alphabetically later, *not* while I'm copying and pasting (too much time, and too much brain!).

I create different versions of the style sheet for different purposes: A single comprehensive alphabetical list for a multiple-part project allows me and the proofreader to cross-check terms across the entire project, which is always helpful; several individual alphabetical lists sorted by chapter, article, or author allow me to send only the relevant list to each author for review.

With Table > Sort in Word, arranging my style sheet in alpha order is a no-brainer, and I like that after a long day at the helm. 🙂 BTW, some people don't realize that this command will work on *any* list; the list doesn't have to be in a table.

A while back, a copyeditor posted to Freelance asking how to convert her style sheet into a table so she could sort it. It struck me *hard* then that one person's "no duh!" (it's soooo obvious) is very often another person's "no way!" (never would have thought of that).

Many thanks to Jim and Pamela for their helpful tips and observations.

_________________________________________

RESOURCES

The EServer TCLibrary of editing articles has a wealth of information on all kinds of publishing topics. Wow, look at all this great stuff!

http://tc.eserver.org/dir/Articles/Editing

Editorial Style Sheet Macro

Last week's newsletter provided a style sheet that editors can use to keep track of style decisions while editing in Microsoft Word. If you didn't get that style sheet, you can download it here:

http://www.editorium.com/ftp/stylesheet.zip

Hilary Powers was kind enough to provide her StyleThat macro in last week's newsletter, and this week I've adapted that macro to work with the editorial style sheet. If you select some text in a document you're editing and then run this macro, it will switch to your editorial style sheet and paste the text under the alphabetical heading where it belongs: ABCD, EFGH, and so on. See last week's newsletter for more information:

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

And now, here's the macro:

'THE MACRO STARTS HERE
Sub StyleThat()
'Macro adapted by Hilary Powers 1/30/04; updated 4/6/04
'Adapted by Jack M. Lyon for use with editorial style sheet
If Selection.Type = wdSelectionIP Then  'No selection
GoTo HedBack
Else
FirstChar = Asc(Selection.Characters.First)
If FirstChar > 64 And FirstChar < 69 Then MySearch = "ABCD^p"
If FirstChar > 68 And FirstChar < 73 Then MySearch = "EFGH^p"
If FirstChar > 72 And FirstChar < 77 Then MySearch = "IJKL^p"
If FirstChar > 76 And FirstChar < 81 Then MySearch = "MNOP^p"
If FirstChar > 80 And FirstChar < 85 Then MySearch = "QRST^p"
If FirstChar > 84 And FirstChar < 91 Then MySearch = "UVWXYZ^p"
If FirstChar > 96 And FirstChar < 101 Then MySearch = "ABCD^p"
If FirstChar > 100 And FirstChar < 105 Then MySearch = "EFGH^p"
If FirstChar > 104 And FirstChar < 109 Then MySearch = "IJKL^p"
If FirstChar > 108 And FirstChar < 113 Then MySearch = "MNOP^p"
If FirstChar > 112 And FirstChar < 117 Then MySearch = "QRST^p"
If FirstChar > 116 And FirstChar < 123 Then MySearch = "UVWXYZ^p"
If FirstChar > 90 And FirstChar < 97 Then MySearch = "Comments:^p"
If FirstChar < 65 Or FirstChar > 122 Then MySearch = "Comments:^p"
Selection.Copy
WordBasic.NextWindow
WordBasic.StartOfDocument
Selection.Find.ClearFormatting
With Selection.Find
.Text = MySearch
.Forward = True
.Wrap = wdFindStop
.Format = False
.MatchCase = True
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = False
End With
Selection.Find.Execute
Selection.MoveRight
Selection.Paste
Selection.TypeParagraph
GoTo Final
End If
HedBack:
WordBasic.NextWindow
Selection.MoveRight Unit:=wdCharacter, Count:=1
Final:
End Sub
'THE MACRO ENDS HERE

If you don't know how to use such macros, you can find out here.

And you can learn how to assign them to a hot key here:

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

Note that you don't have to use the macro with *my* style sheet. It will work with any document in which you've included the following headings, each followed by a carriage return:

ABCD

EFGH

IJKL

MNOP

QRST

UVWXYZ

Comments:

_________________________________________

READERS WRITE

Last week, expert word whacker Hilary Powers sent her StyleThat macro, which I proceeded to gum up. The problem was, it didn't want to work correctly in Word 2000; possibly some of the commands are specific to Word 2003. At any rate, here is Hilary's macro in its pristine state, and many thanks to her for providing it.

Hilary wrote, "The macro relies on having two [and only two] files open at a time. The truly charming thing is that you can use one hot key for both chores: putting something on the style sheet and also priming the style sheet for its next use and returning to the main document.

'THE MACRO STARTS HERE
Sub StyleThat()
' Macro adapted by Hilary Powers 1/30/04; updated 4/6/04
If Selection.Type = wdSelectionIP Then
GoTo HedBack
Else
Selection.Copy
WordBasic.NextWindow
Selection.PasteAndFormat (wdPasteDefault)
GoTo Final
End If
HedBack:
Selection.TypeParagraph
WordBasic.NextWindow
Selection.MoveRight Unit:=wdCharacter, Count:=1
Final:
End Sub
'THE MACRO ENDS HERE

If you don't know how to use such macros, you can find out here.

And you can learn how to assign them to a hot key here:

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

_________________________________________

RESOURCES

I've been fighting the battle against spam (junk email) but not very effectively, even though I've tried a couple of top-notch spam-fighting programs. Then this week I decided to try SpamArrest, and I'm thrilled to say it's actually won the war. Boy, has my inbox been quiet.

When people send me an email message, they receive an email message in return that asks them to click a link to register themselves (a one-time operation) as someone who can send me messages. Spammers, of course, won't bother to do this, which basically means no more spam. It's easy to preregister family, friends, associates, and email newsletters to which I subscribe. The completely online program (no software involved) gives me complete control over how spam is handled, and it's very easy to use.

If you'd like to know more, click here:

http://spamarrest.com/affl?1403707

And if you decide to sign up, please do so through the link above. Since I'm now a SpamArrest affiliate, your support will help keep Editorium Update alive and kicking. Thanks!

Changing Word's Memory Allocation

Editors are often afraid to work on big documents in Microsoft Word. I routinely work on documents larger than 300 pages, so I'm not sure what all the fuss is about. I do believe in having plenty of RAM (random access memory) on a computer (at least 256 megabytes), so that helps. Also, most of my documents don't include graphics, which I know can bog things down in Word.

If you need to work on big documents with lots of graphics and find that Word often runs slowly or locks up, you may appreciate a tip from Word guru Woody Leonhard:

http://www.wopr.com

On page 270 of his book "Word 97 Annoyances," Woody explains how to change Word's memory allocation. Here are the basic instructions:

1. Run Regedit (Start > Run > Regedit).

2. Find HKEY_CURRENT-USERSoftwareMicrosoftOffice8.0WordOptions. [You might have a different version number, such as 9.0.]

3. Double-click on the key and back it up by clicking Registry > Export Registry File. If something goes wrong, this will let you restore the existing settings later.

4. Click Edit > New > String Value. Type in the name "CacheSize" and hit Enter twice. Type in 2048 and hit Enter.

5. Click Edit > New > String Value. Type in the name "BitMapMemory" and hit Enter twice. Type in 2048 and hit Enter.

6. Click File > Exit to leave the registry and save your changes.

What this does is tell Word to reserve 2048 KB of memory (instead of the meager default of 64) for documents (CacheSize) and graphics (BitMapMemory).

You don't have to use 2048, either; you can use lesser amounts, such as 1024. It's up to you. But the more you use, the less memory will be available for other programs that are running.

Don't mess with anything else in the registry. Doing so can cause all kinds of problems. And even for these settings, you change them at your own risk.

Macintosh users should simply be able to change the memory allocation for Microsoft Word.

Interested in learning more about Woody Leonhard's classic book "Word 97 Annoyances"? You can check it out here:

http://www.woodyswatch.com/l.asp?1565923081

_________________________________________

READERS WRITE

After reading the article "Show Me the Menu," Michael C. Coleman wrote:

Another trick for viewing the full menu is to double-click the menu headings.

Terri Svilar wrote:

My question has to do with publishing a document created in Word that contains color. Is there a way to separate the color from the text? I work at a small community college, and every semester we publish a course schedule. Most of the text is not highlighted, but there are certain entries that are highlighted with a light yellow so that students can easily find them.

It takes the person who gets this ready to be sent to the publisher a considerable amount of time to convert from Word to a format the printers can use. What takes her the most time is the highlighting, and then sometimes the highlighting doesn't match the printed words.

I responded:

The best way to approach this, in my opinion, is to use character styles to format the words that need to be in color. If you don't know about character styles, Word's Help file will tell you about them. You could create a character style named something like "Highlight" and apply it to the words in question. Then, when the file goes to the printer, it can be imported into QuarkXPress (or some other typesetting program), and the character styles can be formatted in color as needed in the typesetting program.

If your files currently use Word's built-in highlighting rather than character styles, you can use Word's Find and Replace feature to find highlighting and replace it with your character style.

Many thanks to Michael and Terri for their messages.

_________________________________________

RESOURCES

A few weeks ago this newsletter included a notice for a presentation by expert word whacker Hilary Powers to the Bay Area Editors' Forum. The notes and tipsheet for the presentation, "Electronic Editing: With Your Computer, Not Just On It," are now available online here:

http://www.editorsforum.org

Click "Forum Index" (on the right) and "Work Support & Tools (on the left)," and you'll see the titles in the alphabetical list (in the middle).

Don't miss this incredible resource! Hilary really knows her stuff, and the notes and tipsheet include tons of truly useful information that can save you hours of work and frustration.

While you're there, check out the other resources and articles available from the Bay Area Editors' Forum.

From Word 2K to 2003 Part 1–Looking up the Mountain

[Editor's note: This week marks the first installment in a series of reports by Word expert Steve Hudson on Word 2003--installation, features, and much, much more. If you're thinking of upgrading, you won't want to miss it. Next week, we'll return to our regularly scheduled feature articles and include the rest of Steve's installments in his own column as they become available. Many thanks to Steve for making them available!]

I've got a stack of research to do on using all these new Word objects (that's "features," for those who don't understand VBA-speak) that have started appearing so we've all got some idea of what's there. So I organised a free copy of Office 2003 to review. When I say free, I do NOT mean pirated--being a Word guru occasionally has a few tiny advantages.

I thought I could knock this article over in a few days. Fortunately for us, unfortunately for the article, there is a lot of new stuff available. So this is going to be a multi-part series for a little while to come. These articles do NOT go into using the new features all that much; it is more meant to give an overview of the changes to expect and help prepare you for the different ways you can work, or not, in Word 2003.

Installation

Before you can play, you have to build the ballpark. So we spent hours installing the suite of Office products I use or require. The much-anticipated "perfect install" was far from that.

First problem was it does not upgrade Outlook 2000, nor allow its dual existence with Outlook 2003. We stupidly believed the dialog and thought it would be OK to continue with the other stuff--but the install went belly up fairly quickly. Shutdown restart just to be sure to be sure. Back up Outlook PST's just in case of splat or regression. Removed Outlook and reran the install of the Office core components--Word, Excel, Outlook, Access, PowerPoint, InfoPath and Publisher all come bundled in tightly together. This worked OK.

To be specific, we only asked to keep the old Word 2000 and delete the rest of the old components.

Components

Visio, OneNote and FrontPage all came separately. The new 2003 Outlook features are pretty good, but it's a bit cluttered and reduces the number of messages on screen at once so you have to scroll around more to find stuff. The blurb annoyingly refers to this in the opposite, "Less scrolling with our new Bulldust!" Installing the patches took a fair while--there are quite a few already. Everything worked as planned, and the Office Update site provided the last, only four days old, patch. Started up the different products--you only have to load one from the core set, not each one--and their online activation with the supplied serials worked like a treat--quick, automatic and seamless.

OneNote is quite cool, a post-it note manager with some extra cool features--it is way more than Outlook's notes. I am sure it will creep into the workflow for many users, being more than a clipboard but less than a Word document. But that's enough about Office--these articles are about Word!

Plug-ins

I found a few add-ins available on the Office site already for Word 2003--a remove metadata tool--don't know how far this goes, but it does address some common, difficult metadata problems--and a smart tag add-in for dates and phone numbers.

Duelling versions--but both die at once

The dual running of Word 2000 and 2003 is already painful--the office installer almost re-installs each one when you open a new session. Spell "wait state" for me please. However, do note that I AM currently running both versions at the same time even, with NO problems or conflicts. A huge step forward. As I tend to load up a Word session for many hours, I can live with that. Also, if you don't load the other version in between sessions, the 're-install' doesn't trigger. WHEW!

The only down side I discovered is cascading failure. Crash one Word session, the other comes tumbling down as well. This could be limited to the type of crash, can't tell as yet. It was incredibly satisfying seeing each error report actually loading with Microsoft rather than the quick "OK, we already know about this one" response. Yet again, I manage to stuff things up in new and amazing ways--the power of the guru!

Copyright ? 2004 by Steve Hudson. All rights reserved.

_________________________________________

READERS WRITE

Melissa L. Bogen wrote:

For one client, I have to insert coded text at the top of each file. I want to write a macro (or find some other fast way) to add this big chunk of text. Up until now I have been copying and pasting the chunk of text from an old manuscript and updating it for the ms being edited. I think automating this step will speed things up. I'd like to write a macro that will go to the top of a file and insert the copy. Then using your MultiMacro program, I can run that macro along with some other macros I've written.

I'm a tad rusty on recording macros. I tried to write a macro that searched for a character string (this client always inserts the same character string at the top of every file) and replaced it with the desired basic chunk of text. However, I crashed Word twice now. Maybe MS Word doesn't like that the "insert what" field in my search and replace that I tried to run while recording the macro had a lot of "^p" for hard returns. (The chunk of text includes about 8 lines of text.)

Can you point me to a place where I can find a solution to adding a chunk of text to the top of every file?

I responded:

The number of times you use ^p shouldn't matter. The ^p code should work fine.

Are you really writing the macro, or just recording it? If you're just recording it, you should be able to:

1. Go to start of document (CTRL + HOME). 2. Replace [character string] with [your chunk of text] (CTRL + H).

And then run the macro.

But that reminds me: The longest chunk of text you can have in the Replace With box is 255 characters. So if your chunk of text is longer than that, that could be the problem.

The sneaky way around this is to:

1. Select and copy the chunk of text to the Clipboard. 2. Find [character string]. 3. Replace with ^c (which is the magic code for "whatever is on the Clipboard."

Melissa replied:

Yup, the chunk of text is long. I tried your sneaky way around it (recorded that as a macro) and it worked great. So now I have a macro, but there needs to be something on the clipboard for it to work. Thus I also saved the chunk of text as AutoText, using Brad Hurley's instructions you provided in this week's newsletter. Now I can insert the AutoText into one document, highlight the inserted boilerplate and hit Ctrl + c to add the boilerplate to the clipboard, then run the macro with a bunch of others using your MultiMacro. All the files in a folder have the text inserted.

Many thanks to Melissa for her questions and tips.

_________________________________________

RESOURCES

Want to see Microsoft's overview of Word 2003? You'll find the official party line here:

http://www.microsoft.com/office/word/prodinfo/default.mspx

Show Me the Menu!

In the 1996 film Jerry McGuire, Tom Cruise shouts "Show me the money!" I know the feeling, but right now I want Microsoft Word to show me the *menu*--all of it! In Word's default state, many menu items are hidden until you click the little arrows at the bottom of a menu. For example, if I click the Format menu, only five items show up. If I click the little arrows down south, I get about four times that many. I'm really tired of having Microsoft decide what I can and can't see. If you are too, here's how to remedy the situation:

1. Click Tools > Customize. (If you can't see "Customize," try clicking the little arrows at the bottom of the menu. Heh.)

2. Click the Options tab.

3. See that check in the checkbox labeled "Menus show recently used commands first"? Get rid of it.

4. Click the OK button.

Now when you click on a menu at the top of your Word window, you'll see all of the menu items it contains.

Of course, Microsoft Word includes many more commands that aren't on *any* menu. You can learn more about that here:

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

_________________________________________

READERS WRITE

After reading last week's article on inserting boilerplate text, Mary L. Tod wrote:

How is the use of a boilerplate file with bookmarks different from or better than using Word's built-in AutoText feature?

I responded:

Good question. It's different in that the entries aren't stored in a template but in a specific document. But is that an advantage over AutoText? Probably not. Is it better than AutoText? Probably not, since with AutoText you can pick and choose the entries you want to insert. However, it is one more item to include in your bag of tricks, and sometime it may come in handy, which is why I thought it might be worth mentioning in the newsletter.

David King also wrote to suggest using AutoText:

The boilerplate article is a nice trick to get text inserted. What I use often is the auto insert feature which when attached to the normal template is always available. Or you can select a template to store it. I do not know how much text it can hold, but the nice feature is you have the option of storing formatting information by including the paragraph mark.

Brad Hurley wrote:

I use AutoText to insert boilerplate, it's very fast and efficient.

First I type the boilerplate in a Word document and select the text.

Then, with the text selected, I go to Insert > AutoText > New

I give the entry an easy-to-remember and descriptive name, like "disclaimer."

From then on, whenever I start to type the word "disclaimer" in a document, Auto-Text pops up and suggests the boilerplate text; to insert the whole shebang all I have to do is hit the Enter key.

If I have a lot of different boilerplates for different purposes and can't remember all their names, I can quickly find and select the right one by going to Insert > AutoText and reviewing the entries in the menu. It stores any entries you've created according to the style of the original text. So if you were using Normal style when you created the boilerplate text, you'll find your AutoText entry in the Insert > AutoText menu under "Normal."

Many thanks to Mary, David, and Brad for their messages.

_________________________________________

RESOURCES

Microsoft Word MVP Shauna Kelly provides particularly lucid and helpful explanations of Word and its features on her Web site, "Making the Most of Word in Your Business":

http://www.shaunakelly.com/word/index.html

She has a number of articles for beginners, along with terrific discussions about styles and formatting; sharing documents; and numbering, bullets, headings, and outlines.

Check it out! You'll be glad you did.

Insert Boilerplate

Boilerplate is text you can use over and over again as needed. For example, the Fine Print section of this newsletter is boilerplate. Here's a little-known but useful way to create boilerplate in Microsoft Word:

1. Create a new document to hold all of your boilerplate text.

2. Paste your boilerplate text into it (obviously enough).

3. Select each chunk of boilerplate text and apply a bookmark to it (Insert > Bookmark). Make the bookmark names short and easy to remember. You may even want to keep a list of the bookmarks for reference. (You'll see why in just a minute.)

4. Save your document with a name like "Boilerplate" in an easy-to-find folder.

Now, when you're working on some document and want to insert some boilerplate text, here's what to do:

1. Click Insert > File.

2. Navigate to your Boilerplate file and click it.

3. Click the "Range" button.

4. Enter the name of the bookmark for the chunk of boilerplate you want to use. Unfortunately, Word won't give you a dropdown list of the bookmarks, which is why you should use short, memorable bookmark names and keep a list of what they are.

5. Click the "Insert" button.

The boilerplate for the bookmark you entered will be inserted into your document.

_________________________________________

READERS WRITE

Answering the question "How many pages per hour should someone be able to edit on-screen?" expert word-whacker Hilary Powers wrote:

"Should" is a hard word to apply, as the work varies so much according to the condition of the manuscript and the skills of the editor. But one thing I can say: pages-per-hour production should not be lower than the equivalent paper speed.

For the purposes of pricing, paper speed expectations remain the standard, much as 250 words remains the standard page decades after the demise of the 10-pitch typewriter.

For doing the work, I find that I'm reliably between 150% and 300% of the paper speed expectations--but I've been counting keystrokes and squeezing electrons till they scream for ten years now. It'd be a very reasonable first goal to try to match paper speed on-screen--without rushing. Rather, look for ways to get the effects you want as easily as possible . . . and keep looking after you get back to your paper level, as by that point you'll probably have no more than scratched the surface of what's possible.

A job I finished a bit ago--a near-300-page manuscript in very good shape, well written and with a charming subject--had a net thruput of 14.5 pages per hour. That's close to the top I've achieved thus far for straight editing, but not the absolute max if memory serves.

------------------------

Hilary also wrote:

Here's another wrinkle on the title-case macro:


Sub SentenceTitle()
' Macro written 3/20/2004 by Hilary Powers
Selection.Range.Case = wdLowerCase
Selection.MoveLeft Unit:=wdCharacter, Count:=1
Selection.Find.ClearFormatting
With Selection.Find
.text = ":"
End With
Selection.Find.Execute
Selection.MoveRight Unit:=wdCharacter, Count:=2
Selection.Range.Case = wdNextCase
End Sub

It's for converting two-part title-case titles to sentence case: Select everything but the first word and hit the hot key, and it all goes lowercase except the word following the colon. . . . A godsend for a 50-page reference list with mixed formatting that needs to go to APA. (A refined version would let you select the whole title and then uppercase both the first word and the word after the colon, but I got lazy.)

If you don't know how to use macros like that one, you can find out here:

Many thanks to Hilary for her terrific tips.

_________________________________________

RESOURCES

Where does the term "boilerplate" come from? You can find out at World Wide Words and The Word Detective, both wonderful sites for those interested in words:

http://www.quinion.com/words/index.php

http://www.word-detective.com/index.html

Object Browser

Have you ever wished you had a way to move quickly from one footnote to the next in Word? How about from one edit to the next? One heading to the next? If so, you need to know about Word's Object Browser, which is poorly documented but richly useful.

The Object Browser lives at the bottom of the scroll bar on the right side of your Word window. It consists of three buttons, which look something like this:

^

o
v

There's a double up-arrow on top, a small round button in the middle, and a double down-arrow on the bottom. The arrows take you to the next or previous something, and the button in the middle lets you pick what that something will be. Just click it to see and select the various options, which include:

* Go To

* Find

* Edit

* Heading

* Graphic

* Table

* Field

* Endnote

* Footnote

* Comment

* Section

* Page

That's a lot of stuff! Note that Go To will take you to whatever you've selected in Word's Go To feature, which you can summon up by clicking the Go To button in the Object Browser (or by pressing CTRL + G). And that means you can add the following items to the list of things you can browse:

* Line

* Bookmark (selectable)

* Comment (selectable by reviewer)

* Field (selectable)

* Equation

* Object (selectable)

Similarly, the Find button will open the Find dialog, allowing you to search your document as usual. But after you've found the first instance of the thing you're searching for, you can use the Object Browser to jump to the next one. And the next one. And the previous one. Whatever.

This would really be slick if we just had some keyboard shortcuts to do our browsing instead of having to click those tiny buttons. Well, okay, the shortcuts are CTRL + PAGE DOWN and CTRL + PAGE UP. Enjoy!

Thanks to Meg Cox for suggesting this topic.

_________________________________________

READERS WRITE

After reading last week's article on displaying pages two up, Julian Jenkins wrote:

Thanks for this advice. I now have the multiple pages button on my Formatting toolbar as suggested. However, the same thing can be achieved by selecting "Two Pages" on the zoom menu (underneath the various choices of percentages to zoom to).

------------------------------

Aaron Shepard wrote:

If you select "Different Odd and Even Headers and Footers," Word will show odd pages on the right under Print Preview. In Word 98 for Mac, I'm going to Format > Document > Layout. Click "Different Odd and Even" and apply to whole document. I think I first used it with Word 2001 for the Mac, but I'm not sure. On the PC, it's under File > Page Setup.

Word 98 doesn't have the option on the zoom menu. Simply choosing a small percentage for zoom does bring up multiple pages, but there's a difference. If I use the Multiple Pages button, the pages automatically expand to fit the window. That doesn't happen with the zoom setting.

------------------------------

Donald Hawkins wrote:

I liked your idea of showing pages two-up as described in the latest issue of your newsletter. You might mention that even after you copy the Multiple Pages button to another toolbar, there's an extra step to getting two-up pages. You still have to pick the configuration you want (1x2 pages, 1x3, etc.)--it doesn't go directly to the 2 page display. And when you're done and want to go back to normal view, you have to adjust the zoom back to 100%. (On my screen, print preview comes up at 49% zoom.)

------------------------------

Chuck Tucker wrote:

I suggest a much simpler way to display pages Two Up. When I want to see two pages side by side in Word I simply hold the Ctrl key down and rotate the wheel on the mouse until I see two pages (or 3 or 4 or whatever) side by side. I can easily edit either page, move to other pages, etc. All I have done is change the zoom factor, and I don't need to go to Print Preview to do it.

I would also mention that in Word 2003 they have added a new feature under the View menu called "Reading Layout" that automatically generates a Two Up display with side-by-side views of the pages. There is also an associated Toolbar. You can change the zoom factor in this view and it remains two side-by-side pages. You can perform all usual edits on the pages. Scrolling down brings up the next two pages, etc. This feature is tied in with the Reviewing capabilities of Word--something I haven't pursued in any detail yet, but it looks like more reviewing features than were present in earlier versions.

Many thanks to all for their terrific tips.

_________________________________________

RESOURCES

If you're just getting started in Microsoft Word, you may appreciate the basic Word tutorials at Electric Teacher:

http://www.electricteacher.com/tutorials.htm

Two Up

As a book editor, I often want to see the pages of a book I'm working on as "two up"--that is, two pages at a time, side by side on my screen. This is easily done in Print Preview, of course:

1. Click "File > Print Preview."

2. Click the "Multiple Pages" button--it's green and has four little pages on it.

3. On the little menu that pops up, point your mouse at the second of the first two pages, displaying the notation "1 X 2 Pages" at the bottom of the menu.

4. Click that second page.

Now two side-by side pages should be displayed on your screen.

You can actually work on these pages by clicking the Magnifier button (a toggle) on the Print Preview toolbar (second button from the left). Working in Print Preview always seems kind of clunky to me, however. So I've set up Word to display multiple pages in regular old Print Layout view (View > Print Layout):

1. Click "File > Print Preview."

2. Right-click the Print Preview toolbar and click "Customize."

3. Hold down the CTRL key (to copy rather than move) and drag the Multiple Pages button to a different toolbar--the Formatting toolbar should do nicely.

4. Click the Close button.

Now you have a copy of the Multiple Pages button on your Formatting toolbar. Click it, as explained above, to display pages two up. Pretty slick!

There's just one problem: Word displays those two pages with the odd page on the left and the even page on the right--exactly the opposite of what you'd see in a printed book. It's a little confusing, if you ask me. The workaround is to create a blank section page at the beginning of your document and number it as page 0. Here's how:

1. Place your cursor at the very top of your document (CTRL + HOME).

2. Click "Insert > Break."

3. Under "Section break types," click "Odd page."

4. Click the OK button.

5. Click "Insert > Page Numbers."

6. Click the Format button.

7. Under "Page numbering," click "Start at."

8. In the "Start at" box, enter a zero.

9. Click the OK button.

10. Click the Close button.

Now when you display pages two up, you'll see odd pages on the right, where they belong.

I don't recommend showing pages two up while *editing* a document, but for page layout or overall document review, it's tough to beat. Just page down, review your pages, page down, review your pages, tweaking and refining as you go. I'm still amazed that it's possible to do this in good old Microsoft Word.

____________________________________________________

_________________________________________

RESOURCES

The FontSite offers great fonts, and a number of them are free. As the site says, "The following fonts are available for a limited time at 100% off the regular price. Check back regularly as we plan to offer other typefaces and type-related shareware programs and utilities we believe should be part of one's typographic toolkit."

http://www.fontsite.com/Pages/FFDownloads.html

Section Breaks

In this final installment of how to set up book pages for publishing, we look at section breaks in Microsoft Word. Section breaks let you do a number of things. The most important ones for our purposes are:

* Restart page numbers from section to section--between front matter and chapters, for example.

* Restart footnote and endnote numbers from chapter to chapter.

* Use different running heads from chapter to chapter.

Let's say you've got your whole book in one giant document. (Yes, that's how I like to work.) You'll now want to separate your chapters with section breaks. To do so:

1. If you're not already in Normal view, switch to it by clicking View > Normal. That will allow you to see the breaks you're going to insert.

2. Go to the first place you want to change page numbers, note numbers, and running heads. The first page of your preface will do nicely.

3. At the top of the page, insert a section break by clicking Insert > Break > Page break. Under "Section break types," select "Odd page" (if you want to go the traditional book-publishing route). Then click the OK button. Your document should now include a double-lined section break labeled "Section Break (Odd Page)." If you already had a manual page break there, get rid of it.

4. Repeat steps 2 and 3 at the beginning of each chapter in your book.

Microsoft, catering as usual to office workers rather than publishing professionals, has set up Word by default to have headers and footers from section to section be the "same as previous." That is, if you set up running heads in one section, they'll automatically continue into the next. But in book publishing you don't want them to be the same; you want them to be different.

One way to "unlink" them is to go to your second section (your preface, for example), click View > Header and Footer, and then click the "Same as previous" button on the Header and Footer toolbar. (To see which button is which, rest your mouse cursor over each button for a few seconds until the ToolTip appears.) Then repeat the procedure for each chapter (section) of your book. Failure to unlink headers and footers will eventually drive you mad.

An easier way to unlink them is to use the following macro:


Sub UnlinkHeadersFooters()
Dim curSection As Section, curHeader As HeaderFooter
For Each curSection In ActiveDocument.Sections
For Each curHeader In curSection.Headers
curHeader.LinkToPrevious = False
Next curHeader
For Each curHeader In curSection.Footers
curHeader.LinkToPrevious = False
Next curHeader
Next curSection
End Sub

If you don't know how to use macros like that one, you can find out here:

Once the headers and footers are unlinked, you can set up headers, footers, and page numbers for *each section* as explained in last week's newsletter:

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

While you've got the Header and Footer toolbar available, click the Format Page Number button and tell Word how you want page numbering to work from the previous section to the current one. You can "continue from previous section" or "start at" a number you specify. If you're going from front matter (with Roman numerals) to a chapter (with Arabic numerals), "Start at" is the option you want to use.

And now for those note numbers:

1. Click Insert > Reference (in Word 2002+) > Footnote.

2. Select Footnote or Endnote as appropriate.

3. Click the Options button.

If you're using Footnotes, you can set note numbers to:

* Continuous (throughout the book--not recommended).

* Restart each section (chapter, that is; the traditional method).

* Restart each page (unorthodox but elegant).

With endnotes, only the first two options are available, since endnotes don't appear on each page.

Click the OK button to finish up.

_________________________________________

READERS WRITE

Hilary Powers wrote:

Jack, is there any chance of making MegaReplacer see Language settings? My latest oops is in U.K. English throughout, and it'd have been pleasant to use MegaReplace to fix the files in one fell swoop. (It turns out that AutoCorrect, where a lot of my shortcuts lurk, is language specific, so I can't wait to find out--but it'd be a real enhancement.)

I replied:

How about using MultiMacro to do this? You could record a macro that:

1. Selects all.

2. Sets language.

Then have MultiMacro run the macro on your files.

Hilary responded:

I recorded the guts of the macro you described, which turned out to be

Selection.WholeStory

Selection.LanguageID = wdEnglishUS

Application.CheckLanguage = True

and stuffed it into the macros I use (via MultiMacro, of course) to set the working template for each job at the beginning. Hey presto! No more need to think about language settings.

You can learn about MultiMacro here:

http://www.editorium.com/14844.htm

____________________

John Eagleson wrote:

I'm trying to do something that is a kind of variation on MegaReplacer, but I haven't yet found a tool in your arsenal that does it.

A simple example:

I want to search for "January," and when I find it I want to be able to stop and edit the term. Depending on the context I may want to precede it with a nonbreaking space (20 January), follow it with a nonbreaking space (January 21), abbreviate it, or leave it as is.

When I'm finished I want to then hit or some other key and find the next instance of January.

When I'm finished January I want the macro to do the same with February, and so on.

Do you have a way to do that?

I replied:

My Go2Text macro will kind of do what you need. You can use it to find a word, such as "January," and all succeeding instances of "January," but once the word was found, you'd have to make the changes manually.

http://www.editorium.com/freebies.htm (scroll to the bottom of the page)

You wrote that the replacement would depend on the context, so one way to approach the problem is to figure out what the context is in each case. For example, one context would be "January" preceded by a space and one or more numbers. Another context would be "January" *followed* by a space and one or more numbers. In wildcard terms:

Find what:

([0-9]{1,2}) (January)

Replace with:

12

Find what:

(January) ([0-9]{1,2})

Replace with:

12

And so on.

Then, once you've identified the various contexts, it's a fairly simple matter to set up the wildcard Find and Replace strings (with February, March, etc.) to feed to MegaReplacer.

If you need more information on Find and Replace with wildcards, see the paper on advanced searching that came with MegaReplacer.

You might also be able to use some of the information in this newsletter article:

John responded:

I think I found one way to do what I'm trying to do with MegaReplacer.

In my example of finding all the names of the months and pausing at each one to allow editing, I want to be able to do this without typing the names of the months each time.

Solution:

1. Set up a file with the names of the months:

January|

February| etc.

Only the pipe is needed here since I'm not going to be replacing anything yet.

2. Run MegaReplacer with Mark Automatically checked. Now all the months are marked.

3. Search for the CheckMe character style. I use CTRL+PGDN to move from one month to the next (aka BrowseNext).

Thanks for your help--and your marvelous macros!

You can learn about MegaReplacer here:

http://www.editorium.com/14843.htm

Many thanks to Hilary and John for their questions and solutions.

_________________________________________

RESOURCES

Steve Hudson's Indexing Add-in

Steve Hudson, the Word Heretic, has done it again, with his Indexing add-in for Microsoft Word. If you're creating indexes in Word, you know about the difficulties involved, not the least of which is having no way to jump from an index entry to the text it refers to. Steve has solved that problem; his indexing add-in creates *clickable hyperlinks* from index page numbers to the pages they refer to. Click on a hyperlink and jump to the text, where you can tweak and twiddle to your heart's content. In addition, the add-in highlights the entries so you can actually *see* them for a change. You can learn more--and download the complete documentation--here:

http://www.geocities.com/word_heretic/Indexing.html

If you're indexing in Word, you owe it to yourself to try this excellent new product. And while you're at Steve's website, be sure to check out his other products (notably his books) and his programming and writing services:

http://www.wordheretic.com

Setting Up Headers and Footers

After you've set up the pages of your book (as explained in the last newsletter), you'll need to set up headers and footers. Using Microsoft Word, you might think you'd find headers and footers under the Insert menu. Not so; they're under View. Why? Because your document *already* includes headers and footers. Every Word document does. But they're empty until you put something in them. Here's how:

1. Click View > Header and Footer. You'll now find your cursor in the Header pane, with a nice little toolbar that lets you do various things:

Insert Page Number

Insert Number of Pages (so you can create a footer like "Page 7 of 123")

Format Page Number (1, 2, 3; a, b, c; i, ii, iii; and so on. Include chapter number [1-1; 1-A]. Continue from previous section [neat!] or specify a starting number.)

Insert Date (useful for creating slug lines)

Insert Time (ditto)

[Activate] Page Setup (handy!)

Show/Hide Document Text (to keep things uncluttered while creating headers and footers)

[Set header and footer to] Same as Previous [section] (in case you're using columns, for example, in one of your chapters; I almost always turn this off)

Switch between Header and Footer

Show Previous [header or footer]

Show Next [header or footer]

Close Header and Footer

2. Skip the header of your first page (labeled "First Page Header"), which will be the opening page of your chapter and thus doesn't need a running head. To do so, click the button to Switch between Header and Footer.

3. You're now in the footer (labeled "First Page Footer") of your chapter's opening page. Do you want a page number? I do. To get one, click the Insert Page Number button. (If this were front matter, you could click the Format Page Number button and set your numbering to use Roman numerals.) I *don't* recommend creating a page number with Insert > Page Number, because it puts the page number into a frame.

4. Decide whether you want the page number on the left, center, or right of your page and make it so. The easiest way to do this--and the most heretical, since it doesn't use styles--is to click Format > Paragraph > Alignment and pick your pleasure.

5. Move to the next page by clicking the Show Next button. This will take you to the next page's footer (labeled "Even Page Footer"). Since we previously set up our document to have different first, left, and right pages, you'll need to insert another page number here; it won't just continue the numbering from the first page. Again, format the number as left, center, or right. Since this is an even (and therefore left, or verso) page, you may want to put the page number on the left.

6. Repeat step 5 for the footer on the next page, which will be a right-hand (recto) page. You may want to put the page number on the right.

7. Move to the previous page's header (verso; labeled "Even Page Header") by clicking the Show Previous button and then the button to Switch between Header and Footer. Type the text of your header into the Header pane. In book publishing, items that are more inclusive go on the left; items that are less inclusive go on the right. A few options:

LEFT RIGHT

Author Name Book Title

Author Name Part Title

Author Name Chapter Title

Book Title Part Title

Book Title Chapter Title

Part Title Chapter Title

8. Again, the easiest way to put the running head on the left, center, or right of the page is to click Format > Paragraph > Alignment. Since this is an even page, you may want to put the running head on the left.

9. Move to the next page's header (recto) by clicking the Show Next button. Type the text of your header into the Header pane. Since this is an odd page, you may want to put the running head on the right.

10. Set the font and point size for your running heads and page numbers by modifying their styles under Format > Style. You want them to match the rest of your text, right? While you're in there, make sure they're not set up with an automatic first-line paragraph indent, which will make them look funny on the page.

11. Adjust the space between headers, text blocks, and footers by clicking the Page Setup button and the Margins tab. Then set the distance "From edge" (of the paper) of the header and footer. This may take some experimentation to get right, but when you're finished, your pages should look pretty good.

12. Click the Close button to get back to your document text.

To see your handiwork, click View > Print Layout and set View > Zoom to Whole Page. Wow! (Note that your folios [page numbers] and running heads are automatically repeated on successive pages.)

You'll need to repeat this whole procedure for each succeeding chapter, and if all of your chapters are in one document, you'll need to separate them with section breaks. More on that next week.

_________________________________________

READERS WRITE

Thomas C Dixon wrote:

I edited a book recently that showed two book pages per screen, with the pages numbered consecutively. I've read your article on page sizing, etc., but can't get this effect. How is it achieved?

I responded:

You can achieve what you're describing like this:

1. Click File > Page Setup.

2. Click the Margins tab.

3. Set Orientation to Landscape.

4. Set your document (under Multiple Pages in Word 2002) to 2 pages per sheet.

5. Apply to whole document.

6. Click OK.

7. Click View > Zoom.

8. Click Many Pages.

9. Select two pages.

10. Click OK.

Thanks, Thomas!

Dan A. Wilson wrote:

I think your position is the right one: it isn't a matter of TELLING people HOW TO ADJUST, but of REMINDING them TO REMEMBER to resize or zoom, or both. I, too, have seen countless cases of tennis-match-spectator neck syndrome caused by the use of a newly purchased monitor at full display max. Especially now that LCDs are so widely in use, it's important that users learn to adjust window sizes.

Almost all of my programs except Word and my browsers now run in windows that show my desktop wallpaper behind them on all four sides, because running them any larger than that on a 19" LCD is just plain silly unless you're viewing them from across the room. In Word, I either run single document pages at 80 to 90 percent zoom, or side-by-side pages at 75 percent, and the displays of the latter are STILL larger than those of pages at maximized display and 100 percent zoom on my 17" CRT on the other desk.

The advantage of the larger monitors today is that you can display MORE; using them to display the same old stuff LARGER is pointless for most programs, and an invitation to whiplash injuries.

Large LCD monitors have very high native resolution settings, and are optimized for those settings. Running a 17" LCD monitor at a resolution of 800 x 600 is not only bad for the monitor but bad for the eyes: even the best image available at that resolution on such a monitor will be fuzzy.

I use a 19" LCD with Word windows maximized but with my zoom set to 90% normally. Gives me a slightly larger-than-lifesize view of the page.

Most of the time, though, I use the taskbar right-click control to Tile Windows Vertically, so that I can have two different docs or two different views (or versions) of the same doc open side-by-side, each with its own toolbar. I set the zoom for each doc to 75% then, and the page on the screen is still about the size of an 8.5 x 11 sheet. This is great when I want to check text against the Biblio for presence and identity of entry info, for instance.

Thanks, Dan!

_________________________________________

RESOURCES

Ed Millis wrote:

Your readers might be interested in the Google search add-in. Previously only for Excel, it has now been updated in a Word form also [for both PC and Mac]. This is great! I use it all the time to search newsgroups for information on specific issues. You can find it here:

http://www.rondebruin.nl/Google.htm.

I must confess that, although I've used Word for many years, I've never really used all it could do. I love macros for doing repetitive stuff, but templates? styles? and all the other neat things? Never touched them. Your newsletter, I believe, is going to help me tremendously! Again, many thanks.

Thanks, Ed!