Title Case Macro, Version 2

Last week's newsletter featured a macro to change all-cap headings into title case. It had some drawbacks, though. It would do only one heading level at a time, and you had to specify which heading level you wanted it to work on. In addition, it didn't lowercase articles, prepositions, and conjunctions. What's really needed is a macro that will cycle through *all* of your heading levels (any paragraph styled with one of Word's Heading paragraph styles, such as Heading 1), make them title case, and lowercase articles, prepositions, and conjunctions unless they occur at the beginning or end of the heading. Oh, and one more thing: It should capitalize any word following a colon and a space. I'm giving away the store here, but here's the macro, which I hope you'll find useful:


'MACRO BEGINS HERE
Sub TitleCaseHeadings()
'Created by Jack M. Lyon
'http://www.editorium.com
For h = 1 To 9
Selection.HomeKey Unit:=wdStory
Selection.Find.ClearFormatting
myHeading$ = "Heading" + Str(h)
Selection.Find.Style = ActiveDocument.Styles(myHeading$)
With Selection.Find
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdStop
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
While Selection.Find.Found = True
Selection.Range.Case = wdTitleWord
For Each wrd In Selection.Range.Words
Select Case Trim(wrd)
Case "A", "An", "As", "At", "And", "But", _
"By", "For", "From", "In", "Into", "Of", _
"On", "Or", "Over", "The", "Through", _
"To", "Under", "Unto", "With"
wrd.Case = wdLowerCase
End Select
Next wrd
wrdCount = Selection.Range.Words.Count
Selection.Range.Words(1).Case = wdTitleWord
Selection.Range.Words(wrdCount - 1).Case = wdTitleWord
strLength = Selection.Range.Characters.Count
For i = 1 To strLength
If Selection.Range.Characters(i) = ":" Then
Selection.Range.Characters(i + 2).Case = wdTitleWord
End If
Next i
Selection.Find.Execute
Wend
Next h
MsgBox "Finished!", , "Title Case Headings"
End Sub
'MACRO ENDS HERE

If you don't know how to use macros like that one, you can learn how here.

If you're wondering why you'd want to use a macro like that one, please see my article "The Case against Caps":

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

Please note that you can modify the macro to specify the words you want to be lowercased. Here are the lines you'll need to change:

Case "A", "An", "As", "At", "And", "But", _

"By", "For", "From", "In", "Into", "Of", _

"On", "Or", "Over", "The", "Through", _

"To", "Under", "Unto", "With"

For example, if you wanted to add "Throughout," the modified lines might look like this:

Case "A", "An", "As", "At", "And", "But", _

"By", "For", "From", "In", "Into", "Of", _

"On", "Or", "Over", "The", "Through", _

"To", "Under", "Unto", "With", "Throughout"

You can also delete words. For example, if you wanted to delete "As," the modified lines would look like this:

Case "A", "An", "At", "And", "But", _

"By", "For", "From", "In", "Into", "Of", _

"On", "Or", "Over", "The", "Through", _

"To", "Under", "Unto", "With"

Don't worry about getting the lines too long. You won't. The lowlines _ at the end of each line just break up the macro for easy reading. You can delete them and the following paragraph returns to merge the four lines if you want to.

By the way, you don't have to reserve the macro for changing headings in all caps. You can use it on any headings that need to be changed to true title case. This does not, however, excuse you from editing your headings.

Thanks to Hilary Powers for suggesting the improvements.

_________________________________________

READERS WRITE

Peg Wier wrote:

I agree with you on all counts about the formatting of headings with all caps. I think you left out the most important case against all caps--THEY ARE HARD TO READ!

Bruce White wrote about converting Word documents to HTML:

There are a whole bunch of tools that grew from WinHelp tools. Reworx grew out of HDK by Virtual Media. See the Republicorp website:

Instead of cleaning up Word HTML what you do is get the tool to generate the code from the Word document. It breaks the document into separate HTML pages based on the heading styles in the document. It will preserve the index entries, the links and especially the outline structure (levels of headings--which you can use it in a TOC if you want).

OR the pages can be passed to Dreamweaver and maintained there.

Many thanks for the help and suggestions.

_________________________________________

RESOURCES

Ever heard of a candrabindu? Want to know the difference between oblique and inclined? You can learn all kinds of interesting things from the Encyclopedia of Typography and Electronic Communication:

http://ourworld.compuserve.com/homepages/profirst/encycl2.htm#index

Title Case Macro

During my other life as a copyeditor, I often find myself needing to change the case of words that an author has typed in all caps, LIKE THIS, in chapter titles and subheads. I often perform the task with the handy Cap Title Case feature in my Editor's ToolKit program, but I've also wished for a macro that would do most of the dirty work automatically throughout a document without having to select text. So, I decided to write one. Here it is:


'MACRO BEGINS HERE
Sub FixCaps()
Selection.Find.ClearFormatting
Selection.Find.Style = ActiveDocument.Styles("Heading 1")
With Selection.Find
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
While Selection.Find.Found = True
Selection.Range.Case = wdTitleWord
Selection.MoveRight Unit:=wdCharacter, Count:=1
Selection.Find.Execute
Wend
MsgBox "Finished!", , "Fix Caps"
End Sub
'MACRO ENDS HERE

If you don't know how to use macros like that one, you can learn how here.

The macro goes through your document finding any words formatted with the Heading 1 paragraph style and changes them to title case. Of course, you'll still need to lowercase articles, prepositions, and conjunctions by hand, but at least the macro keeps you from having to change *everything* by hand.

If you're wondering why you'd want to change all caps to title case, please see my article "The Case against Caps":

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

Worried about all caps in other heading styles? You can modify the macro to find them by changing this line:

Selection.Find.Style = ActiveDocument.Styles("Heading 1")

For example, if I wanted to find text formatted with Heading 2 rather than Heading 1, I would change the line to this:

Selection.Find.Style = ActiveDocument.Styles("Heading 2")

You can also modify the case the macro will use to change the text it finds. Currently, it makes words title case, as specified in the following line:

Selection.Range.Case = wdTitleWord

Rather than using "wdTitleWord" (title case), however, you can use the following, if you prefer:

wdLowerCase (which formats the words in lower case).

wdTitleSentence (Which formats the words in sentence case).

Now the next time you need to change the case of a bunch of all-cap headings, you'll have an easy way to get the job done.

You can learn about Editor's ToolKit here:

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

_________________________________________

READERS WRITE

Last week Brad Hurley asked for help in cleaning up HTML from Word, and in particular copying the text of a Word document and pasting it into a Dreamweaver page while preserving basic text formatting (headings and any bold or italic body text) and hyperlinks that were created in the Word document.

Keith Soltys responded:

Your reader who wants to be able to get Word into Dreamweaver might want to take a look at the YAWC Pro plugin for Word:

http://www.yawcpro.com/

According to their web site:

"YAWC Pro generates HTML which is much cleaner and smaller than that generated by MS-Word itself. It also places the content of the Word document into a pre-defined HTML template, so that the output HTML is ready for immediate publication on a website. YAWC Pro avoids the need for post-conversion clean-up of HTML documents, and avoids the need for most content creators to have anything but the most basic knowledge of HTML."

It also can generate XML.

Looks like an interesting tool, but I haven't tried it so I can't offer an opinion on how successful it is.

As far as being able to just copy and paste into Dreamweaver, I don't think there's any way he's going to be able to do it without an intermediate conversion first.

Gaston Brisbois suggested using converters from Logictran:

http://www.logictran.net/products/

http://www.bykeyword.com/pages/detail7/download-7337.html

Cecelia Munzenmaier wrote:

Dreamweaver MX has an Import option that will automatically clean up Word HTML, as well as a separate "Clean Up Word HTML" command. If that's not heavy-duty enough, there's also Word Cleaner; I have no personal knowledge of it, but there's a description here:

http://www.wordcleaner.com/dreamweaver_details.htm

LeAnne Baird wrote:

I'd recommend looking at WebWorks Publisher for Word by Quadralay. With it you can map styles in Word to web styles and control how the formatting is changed on the web side. It's really slick once you get your their standard template customized for your look and feel.

You don't even have to cut and paste. Just run the WebWorks conversion utility on your file and you're done.

http://www.webworks.com/products/wwpp_w/default.aspx

Many thanks to all for their help and suggestions.

Visual Keyboard

Do you ever need to change your keyboard layout from one language to another? If so, you've undoubtedly noticed that your English-language keyboard doesn't always match the keyboard layout used by your computer. If this drives you crazy, you'll be happy to know about Microsoft's Visual Keyboard add-in for Word 2000 and 2002. Visual Keyboard displays the keyboard for another language on your screen so you can see the character you're going to get *before* pressing the key. You can learn more about Visual Keyboard (and download the free software) here:

http://tinyurl.com/rzle

And you can see a screen shot at Alan Wood's fabulous Unicode Resources site:

http://www.alanwood.net/unicode/utilities_fonts.html#visual

Once you've installed and activated the software, you can use Visual Keyboard by clicking its letters with your mouse. Or, you can simply use it as a visual reminder while typing on your regular keyboard. Pretty slick!

_________________________________________

READERS WRITE

Brad Hurley (bradhurley@sympatico.ca) wrote:

Although I still do a lot of editing for print publications, most of my work these days involves Web content. I edit documents in Word 2000 and pass them on to my company's Web designers, who primarily use Dreamweaver to make Web pages. I'm looking for ways to facilitate the transition from Word to Web. Saving a Word document as HTML isn't the solution, because Word famously inserts a lot of proprietary garbage into the code, and my clients want clean, standards-based HTML, formatted with external stylesheets instead of font tags.

There are Word-to-HTML tools in Dreamweaver and online (such as Textism's excellent HTML Cleaner: http://www.textism.com/resources/cleanwordhtml/), but if you want to generate text formatting that resembles what you had in your Word document, you have to first replace your custom styles with Word's standard styles. That can be tedious.

I want to be able to copy the text of a Word document and paste it into a Dreamweaver page, while preserving basic text formatting (headings, and any bold or italic body text) and hyperlinks that were created in the Word document. I wish we could bypass Word altogether and create content directly in Dreamweaver, letting my clients review and edit directly with content-editing tools such as Macromedia Contribute. But Contribute doesn't have Word's "track changes" feature, which is crucial to our document review process.

Any advice that you or your readers could provide would be appreciated!

So, gentle reader, do you have any advice for Brad? If so, please send it to me and I'll include it in the next newsletter. Thanks!

_________________________________________

RESOURCES

Aaron Shepard is making available a free article titled "Books, Typography, and Microsoft Word." The article explains how Word can be used to set type of a quality high enough to be used in desktop book publishing:

http://www.aaronshep.com/publishing

Aaron also offers an expanded version of the article in ebook form. One of the most interesting things about the ebook (which I bought) is the impressive quality of its typesetting, done in Word, of course. Check it out!

Thanks to Aaron for his valuable article.

Style Separator

Word 2002 and Word 2003 include a long-awaited feature: the Style Separator. The Style Separator is a special, hidden (and undocumented) paragraph mark. Rather than creating a paragraph *break,* however, it marks the spot where one paragraph style ends and another paragraph style begins--*all in the same paragraph.* That's right--starting with Word 2002, you can use two or more paragraph styles in the same paragraph.

Why should you care? Mainly because it gives you more control over what's included in a table of contents. Let's say you're editing a manuscript whose first chapter begins like this:

"Paris, City of Lights. After an excruciating ten-hour flight, I arrived at Charles de Gaulle International Airport, where my daughter was waiting with a large cardboard sign bearing the inscription 'Dad.'"

Since Word will create the table of contents from the Heading styles you've applied to your chapter headings (Insert > Reference [in Word 2002 and 2003] > Index and Tables > Table of Contents), you try applying the Heading 1 style to the paragraph. But that's no good, because you don't want the entire paragraph to show up in the table of contents. All you want is "Paris, City of Lights."

The workaround for this problem in earlier versions of Word was to break the paragraph in two:

"Paris, City of Lights."

"After an excruciating ten-hour flight, I arrived at Charles de Gaulle International Airport . . ."

Then, after applying the Heading style to the first paragraph, you would select its carriage return (paragraph mark) and format the return as Hidden text (Format > Font > Hidden). You might then have to insert a space to make everything look nice. And when you inserted the table of contents, sure enough, only the first bit would be included. Yes, you can still do that if you don't have Word 2002 or 2003.

If you do have Word 2002 or 2003, however, you can now use Word's built-in Style Separator instead of a hidden paragraph mark. First though, you'll have to drag it up from the storehouse of hidden Word commands and make it available on a menu, toolbar, or keyboard combination. You can learn how to do so here:

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

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

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

The name you're looking for on the Commands list is InsertStyleSeparator. Okay, I'll make it easy for you:

1. Click Tools > Customize.

2. Click the Commands tab.

3. In the Categories list, click All Commands.

4. In the Commands list, scroll down to InsertStyleSeparator.

5. Drag InsertStyleSeparator to the Formatting toolbar.

6. Click the Close button.

To actually use the Style Separator, you'll still have to start with the paragraph split in two:

"Paris, City of Lights."

"After an excruciating ten-hour flight from Dallas/Fort Worth International Airport . . ."

Then follow this procedure:

1. Place your cursor anywhere in the text of the first paragraph.

2. Create a Style Separator (which will be inserted at the *end* of the current paragraph and not at your cursor position) by using your new toolbar button, menu item, or keyboard combination. The two paragraphs will magically become one, with the Style Separator between the two.

3. Select the text before the Style Separator and style it with the Heading style you want to use in the table of contents.

When you generate your table of contents, the text before the Style Separator will show up there, but not the text after it.

By the way, you can actually see the Style Separator (it looks like a regular paragraph mark with a thin dotted line around it). To do so:

1. Click Tools > Options.

2. Click the View tab and put a checkmark in the All checkbox under Formatting Marks.

3. Click the OK button.

Note that if you open your Style Separator document in an earlier version of Word (97, for example), your Style Separators will become nothing more than hidden paragraph marks. Hmmm. Maybe the Style Separator isn't so revolutionary after all.

_________________________________________

READERS WRITE

A reader who prefers to remain anonymous sent a terrific tip for creating a printable list of document properties without opening the document:

I accidentally found an article on Microsoft's MVP Site called, "Using VBA, how can I get access to the Document Properties of a Word file without opening the document?" The link is:

http://www.mvps.org/word/FAQs/MacrosVBA/DSOFile.htm

This document has a link to a MS Knowledge Base article which has the DSOFile download. The article also has a link to a template to download and put in the Word Start Menu. When you do this it puts another option on the Tools menu to run the List File Properties. You then have to select which document properties you want to be listed. Bingo! The result is a table listing the document properties of each document in the folder. Actually, it only lists Word, Excel and PowerPoint documents. Fortunately for me, most of my documents are Word or Excel.

I have my document properties set up in the footnotes such as file name, subject, comments, author, etc. I wanted to keep an index of all documents so have manually entered the document properties for nearly 3,000 documents into an Excel spreadsheet. But now that I have the DSO file and template, I can run it to list the properties which I list in the spreadsheet and in the same order so that all I have to do is copy the table and paste it in the spreadsheet.

I keep all my new documents in the same folder until I have enough to put on disk. From now on, when I copy them to disk, I will run the properties list, paste it to the index, then either delete the documents or move them to another folder. That way, I will be sure that no document appears on the index more than once. The great thing about the Excel spreadsheet index is that I can sort by subject, or whatever.

This DSO file is going to save lots of time for me!

Many thanks for the great tip!

_________________________________________

RESOURCES

Inquisitor, from Word guru Steve Hudson, detects and reports corruption in Word documents. Here's Steve's description of the new program:

Inquisitor is a tiny tool for MS Word 97+ by the Word Heretic www.wordheretic.com. It uses two different methods to report on the levels of document corruption within the content of your document. Version 1 has no fancy graphics--it is a bare-bones report of the active document--but it is free.

The larger your document, the longer the report takes in a direct linear relationship. On a PIII machine the speeds are quite acceptable in that it is not worth getting up from your desk for reports on documents up to several hundred pages. Extensive advice for getting your code to run as fast can be found in the Word VBA Beginner's Spellbook from www.wordheretic.com.

When strange things start happening in your documents, or your sense of Word paranoia kicks in, click the button on the toolbar and you will have one of two reactions:

Oh, my document is not too corrupt; it must be something else. I'd better ask the Tech Whirlers for help:

http://www.raycomm.com/techwhirl/

Struth! Let's get started on some cleaning.

The actual cleaning of the document is left up to the user. The www.wordheretic.com site provides numerous goods and services for treating document corruption:

* The Word Spellbook has a manual cleansing procedure.

* The site offers a cleaning service for rapid, thorough cleansing of documents at the standard hourly rate.

* The site will offer an Enterprise edition tool to completely rebuild libraries of documents and templates.

Installation

Extract the template to a Word startup directory; full instructions are in the template if required.

For a limited time, the template is available from the Editorium. You can download it by clicking here:

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

Thanks to Steve for making this program available.

Word to PDF

Ever find yourself needing to convert a Word document into PDF (Portable Document Format)? Adobe Acrobat, the program usually used to create PDF documents, is fairly expensive, so you may be interested in some cheaper or even free alternatives:

The free OpenOffice.org software is made specifically to work with Microsoft Word documents, and it allows you to save documents in PDF:

http://www.openoffice.org

PDF995 allows you to print as a PDF document from inside Microsoft Word. The program works well, but the free version does insist on displaying ads unless you pay the reasonable price to make it stop:

http://www.pdf995.com/

You can use the free Ghostscript program to create PDF files:

http://www.cs.wisc.edu/~ghost/

And you'll find an excellent tutorial on how to do so here:

http://tinyurl.com/ma5h

About a month ago, PC Magazine featured an article titled PDFing Cheap that reviewed a dozen alternatives to Adobe Acrobat for creating PDFs:

http://tinyurl.com/ma1v

Need other options? You'll find a bunch of Web sites that will convert Word documents to PDF. Just go to Google.com and search for "convert word to pdf free."

Finally, if you have a Macintosh running OS X, you'll find that the operating system itself includes the ability to create a PDF document through the print dialog box.

_________________________________________

READERS WRITE

After reading last week's article "Quote, Unquote," LeAnne Baird wrote:

I had to smile at the subject of this issue. I have a trick that wasn't my discovery, but I've passed it on to a lot of writers. To get a quotation mark to go the right way, type two of them in a row, then delete the first one. The second one stays as is, going the right direction. This is a slick workaround for people who remain unconvinced of the practicality of shortcut keys.

Derek Halvorson sent this useful information and important warning:

You've suggested in your latest update that Microsoft's use of CTRL+' then ' (or SHIFT+') for closing quotation marks is inconsistent, but it is actually completely consistent with their scheme for accented characters. You can add an accent aigu to any vowel by typing CTRL+' before typing the vowel. So, you only have to remember that, any time you want a superscript accent that is slanted upwards from left to right, you need only key CTRL+' first. If one follows your suggestion and makes CTRL+' the shortcut key for a closing single quotation mark, then one loses the keyboard shortcuts for accented vowels. In this case it seems that there may be some sort of method to the Microsoft madness.

Responding to the article "Style by Microsoft," Linda Gray wrote:

I get rid of those hyperlinked URLs and e-mail addresses by pressing Ctrl+Shift+F9 to unlink field codes, although your Editor's ToolKit uses a different key combo, I believe. The publishing company I work for most often, Sage Publications, doesn't want any field codes in the Word files I send to them, so as part of my final check (and usually before that because they're a pain to work around), I press Ctrl+A to select the whole file and then Ctrl+Shift+F9 to unlink the field codes, which turns all those URLs and e-mail addresses into regular type without being linked to anything. It won't take care of any URL or e-mail address that's been underlined, but that's also easily changed by selecting the whole file and pressing Ctrl+U -- unless the file has text that needs to be underlined, which doesn't happen often in the work I do.

Many thanks to all for their comments.

_________________________________________

RESOURCES

Planet PDF is the place to go for all things PDF:

http://www.planetpdf.com

Quote, Unquote

If you've read many past issues of this newsletter, you know that I loathe Word's AutoFormat options, although I do use one of them--"Replace straight quotes with smart quotes." But sometimes, no matter how hard I try, I can't insert a quotation mark going the right direction. If I want a closing quotation mark, Word insists on giving me an opening one--or vice versa. If you've run into this problem, you know how maddening it can be. Wouldn't it be nice to type precisely the kind of "smart" quotation marks you need without having Word second-guess what you're doing? It turns out there's a built-in way to do that. Here are the key commands you need:

OPENING DOUBLE QUOTATION MARK

To get an opening double quotation mark, press this key combination:

CTRL + `

(That little character on the end there is the single quotation mark on the key to the left of the "1" key on your keyboard.)

Next, press this:

SHIFT + '

(That little character on the end is an apostrophe. In other words, just type a quotation mark as you usually would.)

There's your opening double quotation mark.

CLOSING DOUBLE QUOTATION MARK

To get a closing double quotation mark, press this:

CTRL + '

Then press this:

SHIFT + '

OPENING SINGLE QUOTATION MARK

To get an opening single quotation mark, press this:

CTRL + `

Then press this:

`

CLOSING SINGLE QUOTATION MARK

To get an closing single quotation mark, press this:

CTRL + '

Then press this:

'

Now that I've told you all of that, I've got to say that I don't much like those key combinations. They're hard to type, and they seem inconsistent. Luckily, Word allows us to create our own key combinations, so let's try setting up a more natural and consistent system:

1. Click Insert > Symbol > Symbols tab.

2. Make sure the "Font" list shows "(normal text)."

3. Make sure the "Subset" list shows "General Punctuation."

On the bottom row in the fifth column, you'll see an opening single quotation mark.

In the sixth column, you'll see a closing single quotation mark.

In the ninth column, you'll see an opening double quotation mark

And in the tenth column, you'll see a closing double quotation mark.

Now let's assign some keys:

1. Click the opening single quotation mark.

2. Click the "Shortcut Key" button.

3. Press the new key combination you want to use. I'm thinking this one:

CTRL + '

4. Click the "Assign" button.

5. Click the "Close" button.

While we're still in there, let's assign the rest of the quotation marks. To do so, repeat steps 1 through 5 for each quotation mark. Here are the other key combinations I'm going to use:

For the closing single quotation mark: ALT + '

For the opening double quotation mark: SHIFT + CTRL + '

For the closing double quotation mark: SHIFT + ALT + '

When you're finished, press that final "Close" button to put away the "Symbol" dialog.

That should do it. Note that you can continue to use Word's AutoFormat quotation marks if you want. But when you need to, you can easily specify exactly the kind of quotation marks you need to use.

_________________________________________

READERS WRITE

After reading last week's article "Style by Microsoft," quite a few readers sent additional Microsoft "style" nominations for our "hall of shame." Many thanks to all of them!

Kenneth Sutton wrote:

Here's my nomination of the "replace internet paths with hyperlinks". Bah!

In a similar vein, India Amos noted:

How about this classic: e-mail addresses underlined (not to mention blue and hotlinked). Yecch! Have you ever _deliberately_ clicked a linked e-mail address in a Word file? Me neither.

Finally, Andrea Balinson wrote:

The "style by Microsoft" example that drives me crazy is "Internet and network paths with hyperlinks," which makes Web addresses appear underlined in blue. It's one thing if the document you're writing is designed to be read on a computer; in that case, having URLs as hyperlinks can actually be useful. Most of the time, though, I see printed letters, memos, and other paper materials in which the URLs are underlined -- obviously because whoever created the documents didn't know or care enough to stop Word from formatting them as links.

LeAnne Baird wrote:

Here's my pet grammar-spelling peeve:

If you don't know that 'til is a contraction of until, Microsoft spell checker only gives you till as an option, not till and 'til. What would it cost them to fix this? .00000000000001 per licensed copy.

Caryl Wenzel wrote:

I have complained many a time of "style" imposed by Microsoft that is not accepted in an editorial style manual. Yet, someone at Microsoft thinks he or she is doing someone a favor by providing all these so-called helpful ideas.

I routinely omit such formatting and follow traditional editorial guidelines. I just wish Microsoft would learn the same. In fact, even Microsoft publishes it own style manuals for the books its publishing arm produces, and many of these imposed styles are not allowed.

Peg Hausman wrote:

My pet peeve about Word's "help" is its default enforcement of the alleged rule against using "which" to introduce a restrictive (essential) clause in a sentence. I've appended a longish e-mail (below) that I sent to a local electronic discussion group a while back explaining why the rule doesn't hold water. But the short version is that it was originally simply a mild preference expressed by H. W. Fowler in his famous _Modern English Usage_ (1926). The preference got picked up by AP and was soon presented as grammatical gospel, reproducing itself via journalism teachers all over the United States, in spite of the fact that it fails to reflect most normal educated usage.

Redmond has picked up this fiction and incorporated it into its Grammar function. Type a sentence like "The only document which really mattered was the one they neglected to send" into Word, and it will put the well-known wavy green underline under the fourth through the sixth words. A couple of investigative clicks will get you this message:

"If the marked group of words is essential to the meaning of your sentence, use 'that' to introduce the group of words. Do not use a comma. If the words are not essential to the meaning of your sentence, use "which" and separate them with a comma."

I have two problems with this. One is that it is too dogmatic: If MS wants to help people abide by AP (and AP-influenced) rules, that's fine, but it should be noted as a matter of AP house style and not as law.

The other problem is that a lot of people won't get as far as the second click, so won't know what the wavy green line is about. They may, however, discover through experiment that adding a couple of commas will make the wavy green line go away. I've seen quite a number of restrictive clauses incorrectly garnished with commas for this reason, and the effect can be most confusing. If you add commas to the sentence above--"The only document, which really mattered, was the one they neglected to send"--it promptly sounds witless and absurd.

As noted below, there's a longer discussion at this URL:

I'm afraid even the abbreviated polemic in this e-mail may be too long for you to use [Editor's note: Not at all. It's fascinating!], but in any case, thanks for the chance to cast my vote against a really annoying Wordism!

-------- Included Message --------

Subject: Re: [dcpubs] Which old which? The wicked which!

DATE: 09/03/2003 12:00:00 PM

From: Peg Hausman

To: DCPubs mailing list

References: <1a5.d64a18a.2b279f11 [at symbol] aol.com> <3DF646D8.2050704@cox.net>

Failure to observe the which/that distinction doesn't reflect evolution of any sort, for the simple reason that it has never at any time been a normal rule of English.

Apparently we owe the rise of the which/that rule to Fowler's _Modern English Usage_ (1926). Fowler mentions that some writers seem to follow a practice of using "which" only for non-restrictive clauses, and says he thinks it would be a good idea. But he certainly doesn't present it as a law of the language, current or past: "Some there are who follow this principle now; but it would be idle to pretend that it is the practice either of most or of the best writers."

In fact, a couple of centuries earlier the feeling was that "that" was a rather dubious pronoun, best avoided by careful writers. Here's part of a thumbnail history of which/that from the _Merriam-Webster Dictionary of English Usage_:

_That_ is our oldest relative pronoun. According to McKnight 1928 _that_ was prevalent in early Middle English, _which_ began to be used as a relative pronoun in the 14th century, and _who_ and _whom_ in the 15th. _That_ was used not only to introduce restrictive clauses, but also nonrestrictive ones. . . .

By the early 17th century, _which_ and _that_ were being used pretty much interchangeably. . . . During the later 17th century, . . . _that_ fell into disuse, at least in literary English. It went into such an eclipse that its reappearance in the early 18th century was noticed and satirized by Joseph Addison in _The Spectator_ (30 May 1711) in a piece entitled 'Humble Petition of _Who_ and _Which_ against the upstart Jack Sprat _That_.'

Unfortunately, Fowler's "it would be nice" notion about keeping "which" nonrestrictive was apparently picked up by someone at AP and incorporated into the AP stylebook. As a result, professors at journalism schools across the land started teaching the which/that rule as gospel, and editors influenced by AP style have been trying to impose it on the general public ever since. It's in quite a number of stylebooks now. The only hitch is that it has never made it into the common language--not only of those who barely made it through English 101 but even of the professionally literate. As the _Merriam-Webster Dictionary of English Usage_ noted in 1989:

If the discussions in many of the handbooks are complex and burdened with exceptions, the facts of usage are quite simple. Virginia McDavid's 1977 study shows that about 75 percent of the instances of _which_ in edited prose introduce restrictive clauses; about 25 percent, nonrestrictive ones.

We conclude that at the end of the 20th century, the usage of _which_ and _that_ --at least in prose--has pretty much settled down. You can use either _which_ or _that_ to introduce a restrictive clause--the grounds for your choice should be stylistic--and _which_ to introduce a nonrestrictive clause.

Please look at Ms. McDavid's figures again: "which" introduced restrictive clauses *three times as often* as it introduced non-restrictive ones, in *edited* prose. Read a few novels by good, sensitive authors, and note the same pattern. Listen to intelligent people talking, and note the same pattern. In trying to browbeat the US at large (forget the UK) into observing the which/that "rule," we're tilting at windmills, spitting into the wind, beating our heads against the wall, trying to empty the ocean with a teaspoon, and otherwise wasting our precious time.

A perverse recent development is that our buddies at Microsoft have incorporated the rule into their grammar-checking software. As a result, people who have no notion of the rule are mystified by seeing wiggly green lines underneath sentences that look just fine to them. On experimenting, some of them find that adding a couple of commas makes the green lines go away. The result is mispunctuated restrictive clauses ("the product, which drew the most attention at the inventors' show, was the autopiloted heat-seeking mousetrap. . ."), surely a worse plague than the original alleged problem.

I agree that it would be a nice rule if it existed in a linguistically meaningful sense. There are, in fact, a lot of things on my wish list for the English language, including a decent spelling system and a genuine gender-neutral third-person singular pronoun, but wishing won't make it so.

There's a long but interesting discussion of the issue at

I think the remarks by Jane Lyle in this posting, in particular, are dead on (she's managing editor of Indiana University Press and one of the mavens of copyediting-l). Or just look at very thorough treatment of the question in the _Merriam-Webster Dictionary of English Usage_. (I'm forever recommending this book and hope I'm not too monotonous about it, but I do think leaves all other usage guides in the dust.)

_________________________________________

RESOURCES

Garbl's Writing Center

Garbl (Gary B. Larson) provides a free editorial style manual, an annotated directory of writing Web sites, a concise writing guide, and a personalized advice and writing forum. Lots of good stuff for writers and editors:

http://garbl.home.comcast.net/

Style by Microsoft

Recently a colleague said to me, "Look at this manuscript. All the ordinal numbers are superscripted." What he meant was that "1st," "2nd," "3rd," and so on had the "st," "nd," and "rd" in superscript. Then came an interesting question: "Do you think I should leave them that way?"

Now, I don't know about you, but I've never in my life been tempted to set ordinals with superscript, so my answer was basically "Are you kidding?" Later I started thinking about where the superscripts had come from: Microsoft Word's AutoFormat feature. And that led me to ponder a broader question: Are editors beginning to let Microsoft Word dictate editorial style?

It's tempting here to get off on a discussion of how the means of production influences the things produced, but instead may I just say that if we let Word dictate editorial style, we're in trouble. In my opinion, such "helpful" features as AutoFormat were created mainly as one more whizbang feature for Microsoft's marketing staff. The value to everyday users is negligible or worse. So I thought it might be helpful to identify "style by Microsoft" items to watch out for. Here's my list:

* The aforementioned superscript ordinals. You can learn how to turn off such items here:

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

* Superscript note numbers in footnotes and endnotes. You can learn how to change these to regular numbers here:

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

* Automatic capitalization of articles, conjunctions, and prepositions when using Format > Change Case > Title Case. Our Editor's ToolKit program solves this problem with its "Make selection title case" feature. You can learn more about Editor's ToolKit here:

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

* Opening single quotation marks rather than apostrophes. For example, if I write "'Twas brillig, and the slithy toves," I want the character in front of the "T" to be an apostrophe, not an opening single quotation mark. Our FileCleaner program (also included with Editor's ToolKit Plus) will correct most such problems:

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

* The tiny, ugly ellipses "character" (ASCII number 133 on PC, 201 on Macintosh). Brrr. If you need ellipses, properly spaced periods look vastly better. Again, FileCleaner will fix the problem.

* Arial and Times New Roman. Everywhere I look, I see documents with headings in Arial and text in Times New Roman. Just because Microsoft uses these fonts as its default doesn't mean *you* have to. Go ahead, modify the styles in your Normal template. Be different! Be daring! Be tasteful!

Have you noticed other examples of "style by Microsoft"? If so, please let me know, and I'll include your nominations in next week's newsletter:

mailto:editor [at symbol] editorium.com

_________________________________________

RESOURCES

For more on Word's annoying eccentricities and how to turn them off, see Elizabeth Burton's article here:

http://www.simegen.com/school/business/manuscriptpreparation/taketioff.html

Also, if you haven't already done so, be sure to check out Jean Hollis Weber's book Taming Microsoft Word 2002. It's a great resource, well worth the modest price:

http://www.jeanweber.com/books/tameword.htm

Modifying Built-in Buttons in "My Places"

[Editor's note: This week's feature article comes from Dan A. Wilson, a true gentleman and an editor's editor. Dan explains how to modify even the *built-in* buttons on Word's "My Places" toolbar. Don't want a "Desktop" button getting in your way? Dan explains how to remove it--and much more. I really appreciate Dan's generosity in supplying this information. If you're not already familiar with Dan's work, you'll definitely want to visit his Web site, the Editor's DeskTop, where he has still more useful information that every editor should read:

http://www.editorsdesktop.com/index.html

While you're there, check out Dan's editing services. Then, when you really need a professional, you'll know where to find one.]

This information applies to Word 2002 (Word XP). The My Places bar was not fully customizable prior to the appearance of the 2002 (XP) version. It is easy to add new icons to the My Places bar in Word 2002, to re-order the icons, and to remove any icon(s) you have added, as Jack pointed out in the Editorium Update of July 9, 2003. But a small amount of registry tweaking will give you complete control over the My Places bar icons, and let you consign the standard, default icons to distant memory.

Entries on the My Places bar are contained in the following registry key:

HKEY_CURRENT_USERSoftwareMicrosoftOffice10.0CommonOpen FindPlaces

The Places key contains the following two subkeys: StandardPlaces and UserDefinedPlaces. These subkeys contain the following keys:

StandardPlaces. This subkey contains five keys that correspond to the five default items that appear on the My Places bar.

KEY NAME MY PLACES ITEM

Desktop Desktop

Favorites Favorites

MyDocuments My Documents

Publishing My Network Places

Recent History

UserDefinedPlaces. This subkey contains keys that correspond to items you have added to the My Places bar.

Example:

KEY NAME MY PLACES ITEM

Place0 firstplaceadded

Place1 secondplaceadded

Place2 thirdplaceadded

The following values can be used for keys contained in the StandardPlaces key and the UserDefinedPlaces key:

NAME TYPE DATA OPTIONS

View DWORD {1=List, 2=Details, 3=Summary, 4=Preview}

ArrangeBy DWORD {1=Name, 2=Type, 3=Size, 4=Date}

SortAscending DWORD Boolean to sort ascending/descending

Index DWORD Relative position on the My Places bar

Show DWORD Zero to hide a Standard place

Okay, now, here's the trick: If you locate a DWORD "Show" in one of the StandardPlaces keys (or create a new DWORD "Show" in one of the StandardPlaces keys) and modify its value to "0", that folder will not appear in your Word MyPlaces bar in the Open and SaveAs dialogs. I'll explain this step-by-step below.

There must be at least one icon in the MyPlaces bar. If nothing else is there, Desktop will remain. But if there are other icons showing, you can get rid of the (essentially useless for most users) Desktop icon, the MyDocs icon, or any (or all) of the other default icons.

The standard, low-tech way to access the registry is:

1. Click the Windows Start button.

2. Click "Run..."

3. Type "regedit" (don't include the quotation marks).

4. Press Enter or click OK.

The Registry Editor opens.

To hide the Desktop item on the My Places bar, open this registry key (click the plus to the left of a key's name to expand it, then scroll down to the next subkey listed here and click the plus to its left ...):

HKEY_CURRENT_USERSoftwareMicrosoftOffice10.0CommonOpen FindPlacesStandardPlaces

Now, before you do anything else, save a copy of the registry key you are about to change. If anything goes wrong when you close the Registry Editor, all you have to do is locate your saved copy of the key (it has a name you assigned to it, and the extension .reg), double-click it, say Yes when you are asked whether you want to add this to the registry, and all will be the way it was.

Here's how you save a copy of a key: First, click the name of the key. In the example below, that would be the Desktop key. Click File in the Menu Bar at the top of the window, and click Export. Type a name of your choice in the blank, and navigate to a folder you choose to use as a storage folder for the saved-key file you are about to make. Now just click Save, and the key's entire image is saved as it is before you change anything. If you ever had to restore the key to its prior state, all you would have to do is double-click the name of the file you saved, answer Yes, and the changed key would be restored.

Now that the Desktop key is saved, let's change it. [Editor's note: Be careful not to change anything else or go merrily messing around while you're in there. If you do, you could foul up your computer fairly seriously. Also, don't continue unless you've followed Dan's instructions for saving a copy of the registry key.]

1. Right-click Desktop.

2. On the Edit menu, point to New, and then click DWORD Value.

3. In the New Value#1 box, type Show, and then press ENTER.

4. Right-click Show, and then click Modify.

5. In the Edit DWORD Value dialog box, type 0 in the Value data box, and then click OK.

6. Close the Registry Editor.

That's it.

Reboot.

If the StandardPlaces key you want to hide already has a Show item in the right-hand panel of the Registry Editor window, simply right-click the word Show, click Modify in the pop-up that appears, and type the number (not the letter) 0 in the value box, where the number 1 will already be selected, waiting to be changed. Once you have made a change, click OK and close the Registry Editor.

If the StandardPlaces key you want to hide does not already have a Show item, create one as above. You simply right-click the key you want to create a Show DWORD value in, and go from there. It's a snap.

I added a Show DWORD with a value of 0 (zero, not "O," remember) to each of the StandardPlaces keys when I had added several of my own folders to the My Places bar. I now have five (large) folder-icons showing in Word's My Places bar with no arrowhead at the bottom or top to indicate that there are more icons offscreen. I have icons for my folders called Admin, Editing, Current, Archives, and Computing. They're the ones I use most often in Word, and it's really handy and efficient to have them readily available in the My Places bar, so that I don't have to click through other folders to reach them.

After all, *handy* and *efficient* are descriptors it would be wonderful to be able to use for everything Word. This information can move you a step closer to that goal.

Copyright (c) 2003 by Dan A. Wilson

_________________________________________

RESOURCES

After reading today's article, you may want to know more about the registry and how to use it. If so, a great place to learn the basics is the WinGuides Web site, here:

http://www.winguides.com/article.php?id=1&guide=registry

Then you'll find more Word-specific stuff at the Word MVP site, here:

http://www.mvps.org/word/FAQs/Customization/DataKeySettings.htm

Editing in Full-Screen Mode

This week I've been editing a new project in Microsoft Word and decided to try something new--editing in Print Layout in Full-Screen mode. I didn't think I'd like it, but I do--a lot. If you want to try it, you can activate the feature by adjusting some items under the View menu, in this order:

1. Turn on Print Layout.

2. Set the Zoom level to "Whole page."

3. Click "Full Screen."

Whoa! Your Word menu bar has disappeared! That's okay; just move your mouse pointer to the top of your screen to bring the menu bar out of hiding. Move your mouse pointer back down, and the menu bar will vanish again, leaving a full page of your document floating over a gray background.

(To turn *off* Full-Screen mode, press the Escape key, or display the menu bar and again click View > Full Screen.)

What about your toolbars? They're probably still at the top of your screen, which keeps your document page from being displayed as large as possible. But who said toolbars have to stay at the top of the screen? You've now got lots of gray space at the sides of your page, and you can use that space to hold your toolbars. Just click and hold the vertical bar on the left of a toolbar, drag the toolbar to a new location, and release your mouse button. You can leave the toolbar "floating" in the gray space around your document (and resize it, if necessary), or you can "dock" it on either side of your screen.

With Full-Screen mode turned on, you'll immediately notice how tiny the type is in your document. "I can't work like this!" you'll say. And you'll be right. To overcome this problem, you'll need to attach a new template to the document--a template formatted especially for editing. I'd recommend making body type at least 18 points and headings even larger--whatever you need for nice, legible type, even if that means you no longer have as many words on a page. Don't worry; after you've finished editing, you can attach a template with the final formatting the document needs for publication. You can learn more about this here:

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

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

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

Also, to really make this work, you'll need a big monitor. I do most of my work on a 21-inch screen, but a 19-incher will do. On 17 inches, it's iffy. If you're still using a 13- or 15-inch monitor, it's time to upgrade, and I'd recommend getting the biggest monitor you can afford (the ideal would be an LCD that can pivot to a "portrait" orientation!). You can learn more about this here:

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

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

Some of the advantages of working in Full-Screen mode, are:

* You can see a full manuscript page on your screen.

* The information on your screen is "digital" rather than analog, resembling pages rather than scrolls. In other words, it's presented in discrete, self-contained batches, and hitting the Page Down key really does take you a full page down. (In our Editor's ToolKit program, it also places your cursor at the *top* of the next page; sweet!) You can more naturally perfect a page before moving on to the next one. You don't have that feeling of not knowing where you are or that you're in an unending, scrolling mass of words.

* The discreteness of the pages allows for positional memory and a better sense of proportion--editing seems more natural, like working on paper. You can learn more about this here:

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

* All the distraction of toolbars and menus is gone, leaving you free to concentrate on your editing.

As mentioned earlier, you can still access Word's menu bar by moving your mouse pointer to the top of the screen, but you can also access it by pressing the ALT key. Then you can activate menu items by pressing the key for the letters that are underlined on those items. For example, the File menu has an underline under the F, so you can press F to access the File menu. If you already know what those underlined items are (without looking), you can press both keys at once to access the menu: ALT + F.

Here are some additional tips for editing in Full-Screen mode:

1. Click Tools > Options > View and turn off the following items (to maximize the space on your screen):

* Status bar.

* Horizontal scroll bar.

* Vertical scroll bar.

2. Click View and turn off the ruler.

3. Get more text on a page by reducing the size of your margins under File > Page Setup.

4. If your pages aren't already numbered, insert page numbers. With the status bar gone, you'll need them to gauge your progress as you work through that manuscript.

5. Use Word's "Go To" feature (CTRL + G) to move around in your document.

All of this makes it possible to have a clean screen and see each page as a unit--a pretty nice way to edit! If you've never used Full-Screen mode, why not give it a try?

_________________________________________

READERS WRITE

Juanita Hilkin wrote:

One last tip on document preview. If you have a wheel mouse, hold down the control key while you roll the wheel, and the view of your document will become larger or smaller depending on which way you roll the wheel. This makes it easy to quickly adjust the view on the screen but still lets you type in the document.

After reading last week's article on modifying the "My Places" toolbar, Claes Gauffin wrote:

As you said, there are no ways to modify the toolbar in earlier versions. But what you can do, is to modify the contents of, for example, the "My documents" folder to something useful. If you normally organize your different projects in separate folders, you simply create shortcuts of all these project folders and put the shortcuts into the "My documents folder." And presto! You suddenly have a swift way of reaching all your current work.

Nan Bush wrote:

An add-on I couldn't live without on Word 2000 is Woody Leonhard's WOPR Places Bar Customizer. With it, you can customize up to ten directory links on the Places bar. It's very easy to install and has worked flawlessly for me for two+ years. As a technical writer juggling many documents, I can't imagine (well . . . yes, I can) trying to navigate without it. HIGHLY recommended. I just looked it up to be sure of its availability and found the WOPR Places Bar Customizer and other WOPR products from:

http://www.wopr.com/html/order.shtml

Thanks to all for their great suggestions.

_________________________________________

RESOURCES

High on the mountaintop, the wizard waves his wand, intoning the words of power. "OLEFormat.DoVerb wdOLEVerbShow!" he cries. "Application.OnTime Now!"

Trembling, you approach. "O mighty one," you plead, "I am weary and frustrated. I seek to make Word do my bidding rather than follow its own will, as it is so cursedly wont to do. Will you not teach me your wondrous spells?"

The wizard eyes you carefully, measuring your sincerity. Satisfied, he nods his assent. "We will begin with the spellbooks," he says, drawing a large, dark volume from his voluminous sleeve. The teaching has begun.

Steve Hudson, the Wizard of Word, really has published his spellbooks, which contain the power to bring Word under your control. The spellbooks are three:

1. Word VBA Beginner's Spellbook. This is the perfect reference for any Word user who has ever had to think about recording a macro or automating templates. Whether novice or expert, there are few Word users who won't benefit from the unique topics covered in this book.

2. Word Spellbook. A book for the experienced novice or intermediate user who is ready to move to a more advanced level. It does not cover writing techniques or other secondary information; it is dedicated to the functionality behind Microsoft Word--and nobody understands that better than Steve.

3. Word VBA Spellbook. This more advanced book assumes that the reader already has some programming knowledge. Then it explains how to get results from the inside out. The book is not so much for professional Word developers but rather for Word users who need to develop solutions for their own use.

The price for these collections of powerful knowledge? Just $20 each. For what you'll get, that is ridiculously cheap. The information would be a bargain at twice the price. Better get 'em now before Steve changes his mind. Then you too can be a Word wizard. The way to the mountaintop is here:

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

My Places

In the Open, Save, and Save As dialogs in recent versions of Word, there's a large vertical toolbar on the left-hand side of the dialog. The toolbar has buttons on it that make it easy to get to such places as My Documents and Desktop. Appropriately enough, the name of the toolbar is "My Places." Or maybe that's not so appropriate, since in any version of Word before 2002, there's no way to modify this toolbar--at least no way I've been able to find.

But in Word 2002 there is a way to add places (folders) to the toolbar. Why should you care? Because doing so will give you quick and easy access to your latest editing projects without having to navigate all over the place. Here's how to add a folder you want to use:

1. Click the "File" menu and then click "Open," "Save," or "Save As."

2. In the dialog that opens, navigate to the folder you want to add to the My Places toolbar.

3. Click the folder so it's active.

4. Click the "Tools" menu at the top of the Save As dialog.

5. Click "Add to My Places."

That will add the folder to the My Places bar. You may need to click the down arrow at the bottom of the bar to see the folder you added. However, you can move the folder up in the list by right-clicking it and then clicking "Move Up." (You can also move it down by clicking "Move Down.") If you want to remove the folder from the bar, right-click it and then click "Remove." You'll notice that you can't remove the existing folders, such as My Documents. They're there to stay.

If you eventually accumulate too many folders to handle, you can better manage them by reducing the size of their icons (which, by default, are *huge*). To do so, right-click one of the folders and then click "Small Icons."

Thanks to Michael C. Coleman for suggesting this article.

_________________________________________

READERS WRITE

I've received so many great tips from readers that there's just not room to include them all in a single newsletter. So if your tip isn't here, please be patient. I'll be including it soon.

The previous newsletter included a tip for editing in Print Preview. A number of readers wrote to say there's an easier way: click the Magnifier button (it looks like a magnifying glass over a piece of paper) on the Print Preview toolbar. You'll then be able to edit away. The Magnifier button is a toggle, so after you're through editing, you can click it again to return to Print Preview. Many thanks to all who sent this tip and the others below. Keep those email messages coming!

Bill Rubidge sent some additional tips for working in Print Preview:

You can invoke print preview with a macro, and set yourself to edit mode, with this bit of VBA:

ActiveDocument.PrintPreview

ActiveDocument.ActiveWindow.View.Magnifier = False

You might also use this bit of VBA to set a page-width zoom:

ActiveWindow.ActivePane.View.Zoom.PageFit = wdPageFitBestFit

I also believe you can enter full-screen view with this:

ActiveWindow.View.FullScreen = True

Full screen view is nice if you want to edit in a true WYSIWYG mode, without distraction from any tools, and if your computer is powerful enough or your document simple enough that editing in this mode works fast.

You also have access to all the standard Word commands in print preview mode, even if you can't see the icons and the menus. I avoid using the mouse and icons as much as possible, and just invoke the commands I want using the keyboard shortcuts for the menu bar.

One final suggestion--if you have a document set up to print on both sides of the page, so that you will have facing pages in the final bound document, you can set print preview to show you two pages side by side. If you use full screen view, you can usually read the documents, if you have a big enough display and set the resolution to a good size like 1024 x 768. This view in edit mode is especially useful if you are trying to do nice layout in Word. You can adjust your page breaks to balance your layout across pages. (I recommend fixing page breaks with keep-with-next paragraph commands and start-new-page paragraph commands, rather than page breaks. That way, you won't have as much to undo if you make text edits and the content gets pushed around.)

___________________________

Phil Rabichow wrote:

Just thought I'd mention something in follow-up to your article on Document Preview. You would think that if you open a document, go to File > Properties, and check the "Save preview picture," then you would have a picture as you describe in your article--one that you can see, read, and scroll through.

However, it's just the opposite! If you check that box, two things happen:

1. The file size grows.

2. You only see a snapshot in preview mode in the File > Open dialog box--and you can't scroll. The snapshot is so small (in Word 2000, anyhow), you can't read anything. Moral: never check that box.

___________________________

Eric Fletcher wrote:

I've been away for a bit and just caught up on the last few newsletters. I see you've been delving into one of my favorite features of Word: the document properties dialog.

Several years ago we had a huge job coordinating publication of ~300 publications in three languages from numerous authors. Each publication would be in any of several different phases at any time so I knew document management was going to be critical. To deal with it, I set up a template with a "cover page" consisting of styled fields to show information from the document properties, then very fastidiously followed a rigorous naming convention with the "Show document properties when saving" option set on.

I've attached a sample document so you can see what I mean. [Editor's note: To maintain privacy, I have not made this document available, but you should still be able to get an idea of what Eric is talking about from his comments.] Here are a few of the features:

1. The cover page has fielded info from the Summary part of the properties dialog. Title, subject, keywords, and comments are styled to display. The "comments" field has a running history of where the file has been. Our procedure copies the subject each time the file is saved with a new name (actually, it migrates through sets of folders; in our case, CHP-A through CHP-D as it moves through various set stages) and appends it to the end of the comments field so I keep the history with the file.

2. Some of the other fields are in the statistics tab: pages, words, creation date--and even some math to show things like average number of words per page (for our client's purposes originally but now very useful for quoting on similar work).

3. I set up a custom field "Default language" to identify the default spelling dictionary and display it on the cover page. We often do work in English, French, and Spanish, so it is helpful to be able to see at a glance what language is set as the default. The value and the setting is managed by a custom macro. (Custom fields can be very useful but the feature is poorly documented.)

4. Since we include the cover page for the client, we type any notes they need to see here so they can send the document off to their author without the notes if they choose. The page number references are fields referring to bookmarks, so we can be quite specific without having to worry about pagination differences. (Sometimes the files are sent electronically and printed at their site.)

5. Although this is a bit removed from the properties dialog, I've included sample portions of the proforma table of contents for the styled headings (we provide all levels at the interim stages so they can see the structure of their work--often handy for reducing confusion without having to be a heavy!) and the ToC for figures. The latter is seldom used in finals but we've found it helps a lot in author reviews since many of them are most keen to see that aspect of the text rather than re-reading the entire content.

I've cadged together various macros to generate summary documents using the properties fields: for example, I can list all files in the CHP-B stage in French and show the number of words. Such macros usually end up being job-specific, but they can be real lifesavers if there are large numbers of files. Of course, a well-thought-out naming convention is critical as well--but if you use the properties, you can greatly extend the number of variables to uniquely identify a particular file.

Oh, and a final tip: since I never use the Insert key, I map the File > Properties command to it. So, to see my properties dialog, I just hit Insert. (And if your finger slips going for Delete or Home, having a dialog pop up is pretty harmless--and reminds one of the usefulness of the feature!

_________________________________________

RESOURCES

MyInfo is an outlining and organizational tool I've been using for the past few weeks to keep track of all kinds of ideas, notes, and projects. The program's Web site describes it as a "tool for individuals who need a better way for storing and working with their personal and business information," noting, "It was designed to help you organize documents, ideas and projects easily."

The program certainly does that, and it has a number of features that I think sets it apart from other such organizers:

* Customizable, sortable columns. For me, this is the big one. It means I can sort my many notes by category or deadline or status or just about anything else I can dream up. I can even create my own drop-down list of items to choose from. This is a *nice* feature that I've seen nowhere else.

* Item cloning. If I have a note in one folder, I can have a duplicate in another folder, and whenever I make a change in either one of them, that change is also made automatically in the other. In effect, I can file a note under many different category folders at the same time. If I have a note about creativity, for example, I can store it (cloned) under "Thinking," "Writing," and "Inventing" without worrying about keeping the clones in synch.

* Save options. You can save all or selected items in RTF format using all kinds of slick options, such as automatic item numbering, custom dividers, and comments.

* Fast, intuitive navigation.

* Usability. MyInfo has one of the cleanest program interfaces I've seen, making even its most advanced features simple to use.

If you're looking for an easy, effective way to organize your projects and your life, you'll definitely want to look at this program. You can learn more (and try it!) here:

http://www.milenix.com/myinfo.php