Why Editors Use Word—Writers can Harness Word’s Powers, too!

by C.K. MacLeod

Why Editors Use Word

Revised and updated on Sept 12, 2015. Originally posted at Beyond Paper Editing.

Authors can use a variety of tools for the writing and publishing process. In Idea to Ebook: How to Write a Quality Book Fast, I describe over 30 tools that authors can use, and some of them can even make the writing and publishing process more efficient.

Be sure to choose the best tool for the job, though. Take editing, for example. Microsoft Word is the professional editor’s tool of choice because it helps editors do their work better and faster.

Word’s Built-in Functions

Word has some pretty powerful built-in functions that can help editors hunt down errors efficiently:

Learning to use any of Word’s built-in functions can save an editor loads of time.

Add-ins and Macros

Word also works well with powerful add-ins and macros–tiny software programs that automate a variety of specific editing tasks. But it’s not just about automation; its about accuracy, too. These tools can help editors catch things they’d otherwise miss.

Here is a sample of editing tools and macros that have been designed to be used with Word:

  • CrossEyes: A “reveal codes” tool that helps you see the formatting that lurks in a document’s background. This is particularly helpful for ebook formatting (Word 2010 and earlier; PC only).
  • FileCleaner: For quick document clean-up
  • Computer Tools for Writers and Editors (free): A variety of  macros designed to handle all sorts of editing challenges. FRedit is one worth trying.
  • PerfectIt: A consistency checker
  • Reference Checker: Checks in-text citations against references (for specific style guides)

Writers can use Word’s built-in functions, macros, and add-ins, too. There’s a learning curve involved with each tool, but if you have the time and interest to learn something new, these tools can help you save on editing costs later.

Note: if you ask your editor to edit your manuscript in software that doesn’t have or allow for the use of these tools, your editor will take longer to complete the job. Keep that in mind if you’re paying your editor by the hour!

Editors use Word because it helps them to do their best job for you, the author. I suspect that editors will continue to use Word until other tools can rival Word’s capabilities.


Note: Many of the macros listed in this post are designed for Word for PC and are not available for Mac users. Mac users can write their own macros, though, and run Parallels Desktop so that they can make use of commercially available macros.

Image by leigh49137

How Not to Miss Your Editor’s Suggestions

by C.K. MacLeod

How Not to Miss Your Editor's Suggestions

I recently got back my book manuscript from my copyeditor. She uses track changes and comments in Microsoft Word to suggest improvements. In fact, many editors use Microsoft Word for editing. This article will tell you why.

In a book-length document, it’s possible to miss a suggestion from your editor, especially tiny punctuation insertions:

Word comma

Here’s how to avoid missing your editor’s suggestions:

In Word 2010, go to Review tab, Changes area. Click on the Next button to move your cursor from change to change.

Track next change

Or, a faster way is to assign a keyboard shortcut for the Next function. You’ll only need to do this once.

In Word 2010, go to File, Options, Customize Ribbon, Keyboard Shortcuts: Customize.

Select Review Tab in the Categories area.

Select NextChangeOrComment in the Commands area. That’s essentially the Next button in the ribbon. Assign a keyboard shortcut in the Press New Shortcut Key area. I use Ctrl+N,C (NC means Next Change).

Click Assign.

If you’re using other versions of Word, see this article for specific instructions for assigning a shortcut key to functions in ribbons and menus.

You can now use Ctrl+N,C to move from change to change in your manuscript in Word. You’ll never miss a suggestion from your editor again!

Image by sethoscope

A Macro for Commonly Confused Words

 

A Macro For Commonly Confused Words

By C.K. MacLeod

Updated July 30, 2015

Thanks to Eliza Dee for suggesting a tweak that makes this macro even better (see the comments below for details)! The macro script has been updated.

Adverse or averse? Assent or ascent? English contains many words that are easily confused—words that sound the same, but have different meanings and spellings.

Tackle potential confusables when it’s time to edit your writing. The macro below will highlight commonly confused words in just minutes. After you run the macro, check the highlighted words to see if you’ve used them correctly. Refer to this list to look up any words you’re unsure of.

Tip for editors: use this macro to make potential confusables stand out during a first pass.

Quick Steps

  1. Copy and paste the macro into Word’s VBA.
  2. Run the macro on your writing.
  3. Remove highlighting from words as you check them.

Sub Confusables()
‘ Highlights confusables

‘ Written by Roger Mortis, revised Subcortical, Jami Gold, C.K. MacLeod and Eliza Dee; word list, Commonly Confused Words by Oxford Dictionaries http://www.oxforddictionaries.com/words/commonly-confused-words

Dim range As range
Dim i As Long
Dim TargetList
TargetList = Array(“accept”, “except”, “adverse”, “averse”, “advice”, “advise”, “affect”, “effect”, “aisle”, “isle”, “altogether”, “all together”, “along”, “a long”, “aloud”, “allowed”, “altar”, “alter”, “amoral”, “immoral”, “appraise”, “apprise”, “assent”, “ascent”, “aural”, “oral”, “awhile”, “a while”, “balmy”, “barmy”, “bare”, “bear”, “bated”, “baited”, “bazaar”, “bizarre”, “birth”, “berth”, “born”, “borne”, “bow”, “bough”, “break”, “brake”, “broach”, “brooch”, “canvas”, “canvass”, “censure”, “censor”, “cereal”, “serial”, “chord”, “cord”, “climactic”, “climatic”, “coarse”, “course”)
For i = 0 To UBound(TargetList)
Set range = ActiveDocument.range
With range.Find
.Text = TargetList(i)
.Format = True
.MatchCase = False
.MatchWholeWord = True
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = True
Do While .Execute(Forward:=True) = True
range.HighlightColorIndex = wdViolet
Loop
End With
Next

Dim TargetList1
TargetList1 = Array(“complacent”, “complaisant”, “complement”, “compliment”, “council”, “counsel”, “cue”, “queue”, “curb”, “kerb”, “currant”, “current”, “defuse”, “diffuse”, “desert”, “dessert”, “discreet”, “discrete”, “disinterested”, “uninterested”, “draught”, “draft”, “draw”, “drawer”, “duel”, “dual”, “elicit”, “illicit”, “ensure”, “insure”, “envelop”, “envelope”, “exercise”, “exorcise”, “fawn”, “faun”, “flair”, “flare”, “flaunt”, “flout”, “flounder”, “founder”, “forbear”, “forebear”, “forward”, “foreword”, “freeze”, “frieze”, “grisly”, “grizzly”, “hoard”, “horde”, “imply”, “infer”, “loathe”, “loath”)
For i = 0 To UBound(TargetList1)
Set range = ActiveDocument.range
With range.Find
.Text = TargetList1(i)
.Format = True
.MatchCase = False
.MatchWholeWord = True
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = True
Do While .Execute(Forward:=True) = True
range.HighlightColorIndex = wdViolet
Loop
End With
Next

Dim TargetList2
TargetList2 = Array(“lose”, “loose”, “meter”, “metre”, “militate”, “mitigate”, “palate”, “palette”, “pedal”, “peddle”, “poll”, “pole”, “pour”, “pore”, “practice”, “practise”, “prescribe”, “proscribe”, “principle”, “principal”, “sceptic”, “septic”, “sight”, “site”, “stationary”, “stationery”, “story”, “storey”, “titillate”, “titivate”, “tortuous”, “torturous”, “wreath”, “wreathe”)
For i = 0 To UBound(TargetList2)
Set range = ActiveDocument.range
With range.Find
.Text = TargetList2(i)
.Format = True
.MatchCase = False
.MatchWholeWord = True
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = True
Do While .Execute(Forward:=True) = True
range.HighlightColorIndex = wdViolet
Loop
End With
Next
End Sub


After you’ve addressed each highlighted word, use Paul Beverley’s free UnHighlight macro to remove highlights, one instance at a time.

Not sure what a macro is? See this post for an explanation.

Learn how to use macros with this free 20-minute macro course. You can run macros in Microsoft Word or WPS Writer (pro version).

*The lists of words in this macro are from the Oxford Dictionaries website.

Image by Dvortygirl

The Best Multipurpose Tool for Self-Publishing

Swiss army knife

by C.K. MacLeod

I’m a firm believer in finding and using the best tool for the job. However, it’s not always possible to learn a handful of tools before you need to produce book. When you’re at the beginning of the self-publishing learning curve, it makes sense to choose a multipurpose tool that will do a decent job of everything, and then invest your time in learning how to use that tool well.

If I were to choose one tool that hits on everything required to publish an ebook, it’d be this one:

Microsoft Word.

So, why Word? It’s kind of like the self-publisher’s Swiss army knife. If you have time to learn only one tool, this tool will serve you well.

Note: I know that many writers use Scrivener, and for good reason. Still, Scrivener will not do all the things that Word can do. Definitely make it the next tool you learn, though.

Below, I’ve listed the steps in the publishing process that Word can handle.  Don’t take my word for it (I couldn’t resist…), decide for yourself if Word is a one-stop shop for your publishing workflow.

Tip: Find help for your version of Word here.

Writing

Out of the box, Word will need a few tweaks to customize it for writing and self-publishing. Once you’re set up, writing in Word is straightforward.

Revising

If you know how to apply heading styles while you write, you’ll be able to make use of Word’s Navigation Pane, which behaves like Scrivener’s Binder. You’ll then be able to easily move sections of text around while revising.

Editing

Word shines at the editing stage of the publishing process. It has built-in tools I can’t imagine doing without. You can also use editing add-ins and macros with Word, making editing a more accurate and efficient process. To date, there isn’t a better tool for editing than Word.

Adding Images

It’s easy to insert images into your book with Word. Further, Word’s Smart Art and table design features can give an ordinary table visual zip.

Cover Design

While Word is known for its word processing abilities, it also has built-in graphic design tools.

On a lark, I designed a cover for one of my books using Word’s design tools and Derek Murphy’s excellent cover design tutorial to guide me. The cover won an honourable mention at the Ebook Cover Design Awards. The judges were surprised that the cover had been designed in Word, and I was surprised that Word’s design tools were easy enough to use, even for a non-designer.

Formatting

It is possible to format an ebook in Word and upload a Word file directly to Amazon or Smashwords. The key to the success of this method lies on your ability to create a “clean” Word file.

Word’s built-in tool, the Show/Hide feature, can help you see unnecessary formatting that can make your ebook misbehave. You can find and delete potential formatting glitches with Word’s Advanced Find and Replace feature. Add-in clean-up tools, such as CrossEyes and FileCleaner, can help you clean up a book file in a snap.

When it’s time to design your ebook, ebook design templates can help you create attractive ebooks. Print templates are available, too.

Beta Reader Reviews

You can create PDFs with Word 2010 and later. This is handy when you want to send an advance copy of your book to beta readers who like to mark-up a copy of your book on a tablet. Alternatively, you can send beta readers a copy of your book in docx format, so they can read it on a Kindle using their Send-to-Kindle email address.

Ebook Extras

Many authors are creating extra material, such as checklists, to accompany ebooks. This material is often posted on the author’s website. Word will allow you to create posters, PDFs, and interactive checklists to complement your ebook.

So, if you have time to learn only one tool, Word could be that tool. It’s the only tool I know of that accomplishes so much, so well.

Want an example of a book produced using Word? See Idea to Ebook: How to Write a Quality Book Fast.

Image by Jim Pennucci

How to Find the Hidden Formatting That Will Mess Up Your Ebook

20090823-Typewriter-10
by C.K. MacLeod

Remember the days of the typewriter? Authors of a certain vintage are nodding their heads. If you began your writing career on a typewriter, (and even if you didn’t) you might be guilty of “typewriter” formatting. (Editors everywhere are now nodding their heads.)

“Illegal” typewriter formatting can create unpredictable results in the ebook conversion process. This two-minute video will show you how to use Pilcrow, or the Show/Hide feature in Microsoft Word, to find instances of typewriter formatting in a Word document.

And what do you do when you find typewriter formatting in your Microsoft Word manuscript? You blast it away using Microsoft Word’s Find & Replace codes listed in Advanced Find and Replace for Microsoft Word, by Jack Lyon. Or, if you’re looking for a method that’s more efficient, try the Microsoft Word add-in, Editor’s Toolkit Plus.

Image by rahego 

This article was originally posted at the Beyond Paper Editing blog.

A Quick Way to Apply Heading Styles in Word

Did you know that you can apply heading styles using keyboard shortcuts?

Doing so is much faster than digging around in menus to find the Styles menu or the Styles Palette. This trick is especially helpful for formatting ebooks. Here’s how it works in Word 2010:

Click in the heading you want to apply a style to, or select the heading:

Word keyboard shortcuts for headings

Then choose from the following keystrokes:

Heading 1: Ctrl + Shift + 1
Heading 2: Ctrl + Shift + 2
Heading 3: Ctrl + Shift + 3

Get the idea?

If you’re on a Mac, try the Command + Opt key instead of the Ctrl + Shift.

Help for Your Version of Word

A variety of pearsby C.K. MacLeod

There are many versions of Microsoft Word in use. What’s tricky is that one version of Word can be different from another version of Word. That can be a problem when you’re looking for Word help.

On this blog, I write about Word 2010 because it’s the version of Word I use. It’s also currently the most common version of Word used by editors (this will change as 2013 makes inroads).

Below is a quick list of free resources to help you get to know your version of Word better. This list will also help you to “step sideways” while reading Word tutorials based on a version of Word that’s different from yours.

Word Help

Most of the following links are from gcflearnfree.org—a terrific resource for Word tutorials.

*These two versions of Word are now close, with some exceptions. If you don’t mind a fairly technical document, you can read about the differences here. The table containing keyboard shortcuts is particularly helpful.

Image by Forest Starr and Kim Starr

Getting Started with Jutoh

Jutoh website

by C.K. MacLeod

Updated, December 12, 2015

Jutoh is an inexpensive ebook editor that allows you to convert Word docx files to mobi or epub formats. Below are resources and a cheat sheet to help you find your way around Jutoh.

Jutoh Resources

Manual

Julian Smart, the creator of Jutoh has written a detailed manual titled, Creating Great Ebooks Using Jutoh. It’s available as a free download in a variety of formats on his website. I prefer to access the online HTML version because I can find answers to questions fastest if call up the manual with search terms in Google.

For example, if I key in the terms “Jutoh” and “pictures,” Google will call up Chapter 11: Working With Pictures in a matter of seconds. If you prefer to scroll through a PDF or view the manual as an epub on your tablet, those options are available, too.

Video Tutorials

There are a few detailed video tutorials that demonstrate how to Jutoh:

How to Format .epub and .mobi (Kindle) Ebook Files, by India Drummond is about twenty minutes long and will give you the fastest way in to setting up a fiction book with limited styling in Jutoh.

Geoff Shaw has a short seven-video Jutoh training  series that walks you through creating an ebook in Jutoh, and John Griffin shows you how to use a template in Jutoh. Templates are useful if you’ll be creating a lot of ebooks in Jutoh.

Dr. Julian Smart

If you’ve combed the available resources for an answer to a conundrum, but you’ve come up with nothing, don’t worry. I was delighted to discover that the Doctor was indeed in. Dr. Julian Smart, that is. If you have a question that the manual and videos don’t answer, you can email Julian Smart for help.

Jutoh Cheat Sheet

After viewing the videos, searching through the manual, mucking about in Jutoh, and contacting Julian Smart, I compiled a cheat sheet—a list of how-do-I questions that I can return to the next time I use Jutoh to create an ebook.

While this is not a comprehensive list, I do believe that it contains some of the tasks you’ll want to accomplish in Jutoh. Feel free to let me know if I’ve missed anything.

The items in this list are alphabetical. I’d recommend reading through the left column quickly so you know what’s there, and later, when you have a question, you’ll be able to find that item quickly. 

You’ll understand the items in the table better if you know what Jutoh looks like when you’re working in it. Here’s a screenshot of the various panes:

Jutoh panes

One final thought: the first time I converted an ebook using Jutoh, I did everything in Word—applied styles, inserted hyperlinks, and so forth—and then exported the file to Jutoh.

The second time, I created a document in Word, stripped out all of the formatting, exported it to Jutoh, and then applied all of my styling in Jutoh.

I found the first method more efficient, probably due to my familiarity with Word. Both methods created a nicely styled ebook.

How to Create an Ebook With Sigil

by C.K. MacLeod

Ebook distributors make it possible for authors to upload a Microsoft Word document for publishing an ebook. Because many authors use Microsoft Word, this is an attractive option. If your ebook is mostly text and you’ve done a good job of cleaning it up in Word, the end result can be quite acceptable.

Expect the Unexpected

Sometimes, though, a distributor’s conversion software doesn’t do what you expect. For example, the Lulu and Kindle converters tend to indent paragraphs, even if you’ve applied block paragraph styling in Word (block paragraphs are generally the preferred style for nonfiction books).

While there is a way to trick the conversion software’s annoying tendency to indent automatically, the results aren’t always pleasing. Similar quirks occur in Scrivener, as well.

Block-style paragraph styling in Word
Paragraph styling is indented after it’s converted by Lulu conversion software

Enter Sigil. Sigil is a free, open source epub editor that allows you to create an epub file that you can upload to most distributors. It can help you to prevent some of these quirks. It’s surprisingly easy to use and if you’re at all interested in having more control over how your ebook looks, Sigil allows you to do a bit of tweaking under the hood.

How Sigil Works

Sigil has two views: “Book View” and “Code view” (don’t worry about Code View for now). Sigil’s Book View operates like a simple Word processor. I would never have believed it if I hadn’t tried it myself. Look at the buttons on the toolbar. I’ll bet you can guess what some of them do…

Sigil’s Book View works like a Word processor

Help Sigil Read Your File

Your first obstacle to using Sigil is to figure out how to get your ebook from Word into Sigil. Why? Sigil doesn’t read .doc or .docx files, it only reads HTML, epub and .txt files. Here’s what you need to do (I learned this trick from Paul Salvette’s excellent tutorial, How to Make an Ebook with Sigil):

1. Open your ebook in Word (I use Word 2010). Go to File, Save As, and save your file as Plain Text (.txt). This option strips your Word file of unnecessary code that can mess up your ebook in the conversion process.

Save as plain text (.txt)

2. A message box like this will pop up:

Select UTF-8 encoding

Select “Other coding” and choose UTF-8 encoding (you’ll need to scroll down in the menu), Click OK.

3. Now that you’ve saved your document in a form that Sigil can read, copy and paste it from Word into the middle window in Sigil’s Book View.

Paste your ebook file in the middle window

Because you copied your ebook from a plain text file, you will have lost a lot of your formatting, so you’ll need to reapply some of that formatting in Sigil. But here’s the good news: if you click on the Code View (the button to the right of Book View), your ebook will have been cleared of a lot of unnecessary code that can give you undesirable results later on. This point will become more meaningful in a future post.

An aside: The Sigil User Guide suggests that you can also save your Word files as Web Page, Filtered. This will leave your formatting mostly in tact, but your book will look like a dog’s breakfast in places in Code View. So, while it’s possible to save your Word file as Web Page, Filtered, saving it as plain text might be a better option. Don’t take my word for it, though. You can save your file in both formats, copy them to Sigil and decide for yourself.

4. Your next step in producing an epub is to style your ebook in Sigil, using Sigil’s toolbar. For now, don’t be afraid to play around a little. I will discuss the ins and outs of styling an ebook in Sigil in a future post.

(If the suspense is killing you, check out How to Make an Ebook with Sigil, by Paul Salvette. You don’t have to be a tech wizard to create an ebook in Sigil. It truly is a lot easier than you think.

Updated. Originally posted at beyondpaperediting.com.

New Tool for Writing and Editing: WPS Writer

Apples to apples

by C.K. MacLeod

Are you unhappy that Microsoft Word 2013 is available only through subscription? Consider this alternative: WPS Writer* (formerly Kingsoft Office).

A New Tool for Editing?

Until now, Microsoft Word has been the best tool for editing, but I’d like to suggest that WPS Writer is a close contender. The lite version is free and loaded with features, and it’s part of an office suite that includes a word processor, spreadsheet program, and presentation software (also free). The Office Suite Pro version is reasonably priced at $69.95 USD, and it has some additional features—including the ability to run macros—that you’ll want for your self-editing toolkit.

If you’re happy to forego using macros in your writing process, the lite version will provide you with most of the writing and self-editing features you’ll need. Don’t hold out on macros for too long, though. Macros can help you to pinpoint difficulties in your writing, so you can fix them.

Tablet App

WPS Writer is also available for iOS and Android tablets (free)—for authors who like to edit on-the-go. If you use Dropbox to store your files, moving back and forth between the desktop app and the tablet app is relatively seamless.

WPS Writer and Word: A Comparison

Below is a table that compares Word 2010—the last non-subscription version of Word—with WPS Writer. I’ve listed all of the features typically used by authors and editors. If I’ve missed a feature, be sure to let me know in the comments below.

Note: The table was created in WPS Writer using Table tools.

WPS Writer also comes with a . Pretty impressive, huh? So if you haven’t been one of the lucky editor-sorts to scoop up one of the remaining copies of Word 2010, WPS Writer may well be worth a look.

A special thank you to Adam Santo for inspiring me to look into this software further.

*For those who are curious: WPS stands for Writer, Presentation, and Spreadsheets—the three components of WPS Office.

Are you a technical writer? Check out Ferry Vermeulen’s technical writing tools picks in Technical Writing Tools: The Ultimate Choice of 83 Experts.

Image by Harald Hoyer