8 Proofreading Tools for Beta Readers

8 Proofreading Tools for Beta ReadersBy C.K. MacLeod

Updated. Originally posted on April 4, 2014.

Many self-publishing authors use beta readers to get feedback on a book before publication. You don’t have to work on paper; you can use a computer or a tablet to “mark up” or make notes on an author’s manuscript.

Below is a list of tools for beta readers. An author may send you a manuscript in a variety of formats, so I’ve included options for several file formats.

File Formats

Sometimes it will make sense to convert the author’s file to another format. Many of the proofreading tools below will read PDFs. You can save an .rtf, .doc, or .docx file as a PDF with Microsoft Word or WPS Writer (free). If you have a stylus for your tablet, you may be able to mark up text like you would on paper.

This table will tell you which tool will read which file format. I summarize the features of the tools below.

Tablet Apps

Adobe Reader (free)

  • Reads PDF files
  • Available for Android and iOS
  • In-text highlights, strikethroughs, and comments
  • Drawing tools for mark-up
  • Works well with a stylus
  • Search function, so you can search all instances of an error

iAnnotate

  • Reads PDF files
  • Available for Android (free) and iOS ($9.99)
  • In-text highlights, strikethroughs and comments
  • Drawing tools for mark-up
  • Works well with a stylus

WPS Writer (free)

  • Part of the WPS Office suite
  • Available for Android and iOS tablets and phones
  • Reads .doc and .docx files
  • Track changes
  • Comments
  • Find and replace
  • Voice search
  • Syncs with desktop version so you can alternately work on a computer and a tablet

Computer Apps

WPS Writer (free and paid)

  • Part of the WPS Office suite
  • Reads .doc, .docx and .rtf files
  • Track changes
  • Comments
  • Robust find and replace
  • Wildcards
  • Pro version can run proofreading macros
  • Syncs with the tablet app version so you can alternately work on a computer and a tablet

Adobe Reader XI (free)

  • Reads PDFs
  • Used by professional proofreaders
  • Drawing tools for mark-up
  • Allows you to load PDF stamps into the software (see below), so you can mark a variety of proofreading errors with symbols instead of with comments
  • In-text highlights, strikethroughs and comments
  • Robust search function
  • Read-aloud feature so you can listen for mistakes that your eyes might miss

PDF XChange Editor (free)

  • Reads PDFs
  • Used by professional proofreaders
  • Drawing tools for mark-up
  • Allows you to load PDF stamps into the software
  • In-text highlights, strikethroughs and comments
  • Robust search function

Adobe Digital Editions

  • Reads epubs
  • Use ADE if the book has already been professionally formatted for e-readers
  • It’s not possible to mark up in ADE, but you can copy sections of text into a word processor and mark up the changes there—procedure explained by Rob at 52 Novels

Kindle E-ink Readers and Apps

App or Desktop Version?

Computer software tends to have more robust search functions than tablet apps, but it can take a while to figure out how to use the drawing tools to mark up the text with a mouse.

Proofreading stamps are a shorthand for proofreading errors, and tend to make the proofreading process faster. Use them if the author knows what they mean (or provide the author with a glossary of symbols, if you like).

Note: As far as I know, stamps tend to only work in the desktop versions of proofreading software.

8 Proofreading Tools for Beta Readers
Wiley Publishing stamps in PDF XChange Editor

If you want to imitate the pros, you can import* proofreading stamps into your proofreading software or design your own. Louise Harnby of the Proofreading Parlour offers a collection of British proofreading stamps for free, and you can find American proofreading stamps on the Wiley Publishing website.

Do you have a favourite proofreading tool not listed here? Tell us about it in the comments below.

*To learn how to import proofreading stamps into Adobe Reader XI or design your own, see this video by Adrienne Montgomerie.

Image by Alan Levine

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

Most Popular Tech Posts of 2014

Top 10by C.K. MacLeod

Here are the top 10 Posts on Tech Tools for Writers in 2014.

  1. 20-Minute Macro Course (free)
  2. Retrieving a Backup File in Scrivener
  3. Improve Your Writing with Macros
  4. Scrivener Cheat Sheet (Downloadable)
  5. How to Make Word Behave Like Scrivener
  6. A Self-Editing Toolkit
  7. New Tool for Writing and Editing: WPS Writer
  8. Creating and Checking Your Epub in Sigil
  9. How to Add a Macro to Word
  10. A Macro for Commonly Confused Words

Which tool will you try in 2015?

Image by Sam Churchill.

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