Making a List of Words Italic

Written by Allen Wyatt (last updated December 23, 2022)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021


2

Trent works for a scientific publisher. In the manuscripts he works with there are many technical terms, such as names of various species of insects or animals. Scott has a need to make sure that all of these species names are italicized. Scott wonders if there is a way to use a list of terms (perhaps in a text file) and have Word make sure that each word in the list is shown in the document in italic.

There are multiple add-on tools you could get that would perform this particular task. Two of them suggested by WordTips readers include the following:

FRedit: http://www.archivepub.co.uk/book.html
EditTools: http://www.wordsnsync.com/

These are powerful tools, and you can even get FRedit for free. The downside, of course, is that each tool comes with its own learning curve that you'll need to go through in order to get it to do what you want.

Another approach is to create your own macro to perform the task. Fortunately, such a macro would not be that complex. Basically, you could create a plain text file (using a program such as Notepad) that would contain a single species name on each line. Your macro could then open the file, read each line, and change all instances of that species to italic in your document.

Sub FindSpeciesForItalic2()
    Dim sSpecies As String

    Open "C:\species.txt" For Input As #1
    Do While Not EOF(1)
        Line Input #1, sSpecies
        With Selection.Find
            .ClearFormatting
            .Replacement.ClearFormatting
            .Replacement.Font.Italic = True
            .Text = sSpecies
            .Forward = True
            .Wrap = wdFindContinue
        End With
        Selection.Find.Execute Replace:=wdReplaceAll
    Loop
    Close #1
End Sub

This macro relies on the text file named species.txt, stored in the root directory of the C: drive. (You can store it someplace else or name it something else, but in that case, you would need to change the line of code to reflect the changes.) After each line is read from the text file, Find and Replace is used to make sure that the text is changed to italic.

It typically wouldn't be a problem with species names, but you'll want to make sure that each line in the text file is unique enough that you don't get partial words affected in the document. For instance, it wouldn't be a good idea to do a search for just "one" because that would match things like "done" or "tone" or "loner" or... Well, you get the idea.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (13639) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Only Inline Figures Can be Seen and Printed

Insert a graphic into a document and you expect to be able to see it. What do you do if it isn't displayed, however? Here ...

Discover More

Determining Word Versions of Documents

If you know where to look, you can figure out which version of Word was last used to work on a document. It takes some ...

Discover More

Copying Formats

Want to copy a format from one place to another without taking your hands off the keyboard? It's easy to do if you apply ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!

More WordTips (ribbon)

Changing Sections

When you divide your document into sections in order to change page layout attributes, you need to give some thought to ...

Discover More

Sign-in Sheets

Printed sign-in sheets are a staple at many meetings and seminars. Word can create them lickety-split just by using a few ...

Discover More

Italic Typing Doesn't Stay Italic

If you turn explicit formatting on and off as you type, you may notice some quirky behavior in Word. This tip examines ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is eight minus 5?

2023-01-03 07:49:30

Pat

I needed to clear my find and replace dialog box before running this, so I added the following before the loop (i.e. before "Dim sSpecies As String")

With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindStop
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With


2022-12-23 05:45:27

Kiwerry

Thanks, Allen.
As far as the last paragraph in the tip is concerned, would the addition of the line

.MatchWholeWord = True

in the With ... With end construction not avoid the problem of getting partial words affected in the document?


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.