characters with bar

  • Thread starter Thread starter john t
  • Start date Start date
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
 
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
 
Back
Top