characters with bar

J

john t

Hallo
How do I put a bar over x (bar-x in statistics is the
mean) and over D (Roman numerals D with bar is 500,000)
Can't find these in the symbols
Have a nice day
john
 
G

Greg Maxey

John,

I use an EQ field {EQ \x\to(y)} where "y" is the value under the line. I
have a macro for gathering the input and generating the field:

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.mvps.org/word/FAQs/MacrosVBA/CreateAMacro.htm


--
\\\\///////////
( @ @ )
----oo00---(_)---00oo----
Greg Maxey
A peer in "peer to peer" support
Rockledge, FL
 

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