"Upperline" characters

A

Andres

I'm trying to "upperline" (not underline) characters. Is
there any tool or function that allows to do so?
 
P

PTT, Inc.

You can use "Format", "Borders and Shading" to "upperline" an entire
paragraph. but not individual characters that I know of.

Bill Foley
www.pttinc.com
 
S

Suzanne S. Barnhill

There are two ways to create a character with a line over it, both using an
EQ field:

1. Use the EQ \o (overstrike) field to superimpose an overbar (character
0175) over your other character.

2. Use the EQ \x (box) field with the \to switch to put a top border on the
selected text.

The use of the EQ field and its switches is well documented in Word's Help
file.

Whichever method you use, you can save the result as an AutoText entry for
ease of future insertion.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
G

Greg Maxey

Andres,

I use on of the methods Suzanne provided, but I have gone one step further
and put it in a macro:

Public Sub Negate()

Dim Expr As String
Expr = InputBox("Enter the expression to negate:", "Negate")
If Expr <> "" Then
ActiveDocument.Fields.Add Range:=Selection.Range, _
Type:=wdFieldEmpty, _
Text:="EQ \x\to(" & Expr & ")", _
PreserveFormatting:=False
End If
End Sub

See:
http://www.gmayor.dsl.pipex.com/installing_macro.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top