Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, and 2016. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Overlining Characters.
Written by Allen Wyatt (last updated April 21, 2021)
This tip applies to Word 2007, 2010, 2013, and 2016
It is not uncommon to underline characters in your documents. This is typically done for some sort of emphasis. Overlining characters, however, is a bit trickier. Normally you use overlining for documents about electronics, where an overline indicates that the signal line is "active low."
There are many ways you can overline your characters, including searching for special fonts that include the overlines (such as the public-domain SPAtlantis font) or using the Equation Editor (the Underbar and Overbar templates are quite helpful). These solutions, however, can lead to additional problems. For instance, using a special font means that the actual characters used won't match the characters used in the rest of your document, and if you send the document to someone else, you need to make sure you embed the font or provide the font to the other person separately.
The best solution we have found is to use special field commands supplied with Word. For instance, if you wanted to use an overline on the W character, you could do the following:
To change the character displayed, simply change the W in the field to a different character. A similar approach is to use the overline character and use a field to position it "on top of" another character. You can do this by following these steps:
Depending on the fonts you are using, either of the foregoing may result in overlines that are a bit too long for your liking. If you want an overline that is more closely related to the size of the character you are using, try these steps (again using a field):
Regardless of which method you use, you can select the field and assign it to an AutoText entry so that it appears automatically when you type the entry.
You can also use a macro, if you prefer, to add the proper field codes. The following example macro prompts you for the character you want overlined, and then creates the field to overline it. The field used in the macro is the one you created manually in the last set of steps.
Sub Overline() Dim sChar As String sChar = InputBox("Enter character to overline", "Overline") Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, _ PreserveFormatting:=False Selection.MoveLeft Unit:=wdCharacter, Count:=1 Selection.Delete Unit:=wdCharacter, Count:=2 Selection.TypeText Text:="EQ \o(" + sChar + ",)" Selection.MoveLeft Unit:=wdCharacter, Count:=1 Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, _ PreserveFormatting:=False Selection.MoveLeft Unit:=wdCharacter, Count:=1 Selection.Delete Unit:=wdCharacter, Count:=2 Selection.TypeText Text:="EQ \s\up10(_)" Selection.Fields.ToggleShowCodes Selection.MoveLeft Unit:=wdCharacter, Count:=2 Selection.Fields.ToggleShowCodes End Sub
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (4314) applies to Microsoft Word 2007, 2010, 2013, and 2016. You can find a version of this tip for the older menu interface of Word here: Overlining Characters.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
Need to quickly count a group of items in a document? Here's a drop-dead easy way to get that count.
Discover MoreThe traditional way to insert symbols into a document is to use the Symbol dialog box. This tip looks at ways other than ...
Discover MoreWhen using smart quotes in your typing, Word tries its best to figure out which way the quote you just typed should face. ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2018-06-20 08:58:06
Bruce
Thanks, Allen, this is the second time in as many months that a web search for a solution to my peculiar Word problem led me to your tips and a well-explained answer. I appreciate all you do to help Word users and I'm subscribing to your newsletter.
2018-01-13 09:48:11
Christopher Tribe
You can also use the combining diacritic marks included in Unicode fonts. Type your base letter (e.g., W), go to Insert—Symbol—More symbols, and then in the Character code box type 0305 (for a combining overline) or 0304 (for a shorter combining macron). If you use this often, you could assign the combining diacritic mark to a shortcut key of your choice by clicking on the Shortcut Key button at the bottom of the Symbol dialog box and assigning a key combination (e.g., Alt-w). Then you just need to type w Alt-w to get w̅, or x Alt-w to get x̅ .
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments