rule over a letter -- scientific language

  • Thread starter Thread starter Guest
  • Start date Start date
PS,

You can use an EQ field. CTRL+F9 to enter field code brackets. Use { EQ
\x\to(your letter) }

If you do this alot, here is 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
 

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

Back
Top