Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Overbar notation in word [field codes?]

  • 03-09-2014 3:34pm
    #1
    Registered Users, Registered Users 2 Posts: 86,729 ✭✭✭✭


    OK you sexy people,

    I need to be able to do LOTS of overlines/overbars for technical reports. Wikipedia notes that Word handles this with field codes eg. "{EQ \O(x,¯)}" gives you x-overbar (the standard deviation symbol etc)

    Now does anyone actually know how I can insert field code???


Comments

  • Registered Users, Registered Users 2 Posts: 267 ✭✭Codpeas


    To help target a response - what version of Word are you using?


  • Registered Users, Registered Users 2 Posts: 86,729 ✭✭✭✭Overheal


    word 2013


  • Registered Users, Registered Users 2 Posts: 86,729 ✭✭✭✭Overheal


    I figured it out before ALL OF YOUUUUUU

    In the design tab for equations its under "Accents" ugh


  • Registered Users, Registered Users 2 Posts: 267 ✭✭Codpeas


    Overheal wrote: »
    I figured it out before ALL OF YOUUUUUU

    In the design tab for equations its under "Accents" ugh

    Welllll, I suppose you could do it that way...

    Or if ya want to be all fancy 'n stuff you can do Alt+= and just type something like:

    \overbar(x)<space>

    :cool:


  • Registered Users, Registered Users 2 Posts: 267 ✭✭Codpeas


    Another option, which uses the field code that you mentioned at the start, would be to create a macro (and assign it a keyboard shortcut) so that a quick keyboard combo would do the trick.

    Macro would look like:
    Sub StandardDev()
    '
    ' StandardDev Macro
    '
    Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, Text:= _
    "EQ \O(x,¯)", PreserveFormatting:=False
    End Sub


  • Advertisement
Advertisement