Get a Macron or overline above letters in MS Word 2008

Hi all,
I am trying to write out some Boolean algebra expressions for my degree work and cannot figure out for the life of me how get a macron above letters (horizontal line above a letter; like mathematical mean). I need to be able to type any letter and place the macron above it as the letters I am using are all different for loads of expressions.
I have tried inserting symbol but cannot find the appropriate symbol, also have tried finding fonts online and changing keyboard to US extended although this didn't really work as I'm in the UK and can't disable british keyboard...
I would really appreciate some help please, I just want to get on with my work...
(I'm using MS word 2008)

I don't understand that part about the British keyboard.  There is no need to disable it.  You just add the US Extended layout and then select it when you need a macron.  That character can be made by first typing your base letter and then Option/alt + Shift + a.  That is the way this kind of thing is normally done by everyone, regardless of country of location.  A chart of the shortcuts:
http://homepage.mac.com/thgewecke/diacritics.html
But you could also use the Character Viewer, View = Code Tables, Tab = Unicode, range = 00000300 Combining Diacritical Marks, 0304 Combining Macron.  Type your base letter and then double click on that to add the Macron.
Many base letters are available in Character Viewer with the macron already added.
If you have a lot of this kind of stuff and it needs to look perfect, then best use an equation editor like MathType.
http://m10lmac.blogspot.com/2008/12/typing-equations-and-formulas.html

Similar Messages

  • How we can get Uppercase Macron entities in XML...

    Hi good morning to everybody,
    We are currently working in XML job in InDesignCS2 MAC. In the job Times postscript font is the base font. And we need macron entities for this job. In this Times Postscript font special entity characters are not available. But we have only Macron symbol (Over bar) as individual character in this font. So here we get those macron entities by Tracking two characters.
    After we have choose Otf font which is named "TimesLTStd Phonetic" for the special entities. In this the Otf font have only the Smaller case macron entities but not Uppercase macron entities. We need both Upper & smaller case macron entities.
    If anyone have ideas about this, please suggest & help me too.
    Thiyagu

    Hi good morning to everybody,
    We are currently working in XML job in InDesignCS2 MAC. In the job Times postscript font is the base font. And we need macron entities for this job. In this Times Postscript font special entity characters are not available. But we have only Macron symbol (Over bar) as individual character in this font. So here we get those macron entities by Tracking two characters.
    After we have choose Otf font which is named "TimesLTStd Phonetic" for the special entities. In this the Otf font have only the Smaller case macron entities but not Uppercase macron entities. We need both Upper & smaller case macron entities.
    If anyone have ideas about this, please suggest & help me too.
    Thiyagu

  • When I first downloaded to 7.1, it made my keyboard black with white letters. Very distinct. Now, it's somehow back to white with black letters. How do I get my black keyboard with white letters back ? iPhone 5S

    When I first downloaded to 7.1, it made my keyboard black with white letters. Very distinct. Now, it's somehow back to white with black letters. How do I get my black keyboard with white letters back ? iPhone 5S

    You changed the proper preference, but you don't need to relaunch iTunes. You do, however, need to click the blue OK button at the bottom right of the preferences window. The change will happen then.

  • Counting letters in a word

    I am using lingo to count and display letters in a word but my script is stuck on a point. Can any help to solve this?
    property 
    SpriteNum
    global 
    gCurrentCounter, CurrentWord, lettersofCurrentWord, sSoundName
    On 
    MouseDown me
     if  gCurrentCounter < 10 then
    p = "00" & gCurrentCounter
    else if  gCurrentCounter < 100 then
    p = "0" & gCurrentCounter
    elsep = gCurrentCounterend ifj = 1
    letter_no = spritenum
    letter_name = member("PE_" & string(j)).text
    letter_uppercase = "A"
     -- puppetSound 1, "A sound"
    CurrentWord = member("word - " & p)i =
    1
    If  sprite (letter_no).within(sprite(spritenum)) Thenif 
    charToNum(member(CurrentWord).paragraph[1].char[1]) <= 90 then
    member ("pe_space_" & string(i)).text = letter_uppercase
    elsemember ("pe_space_" & string(i)).text = letter_name
    end if   
    end if set the  loc of sprite letter_no to point(300,330) 
    -- i = 2
    put  i 
    -- repeat while i <= CurrentWord.char.count
     if  charToNum(member(CurrentWord).paragraph[1].char[i]) >= 200 then
    member ("pe_space_" & string(i)).text = member(CurrentWord).paragraph[1].char[i]
    sprite  (letter_no).within(sprite (10 + i))
    elsemember ("pe_space_" & string(i)).text = letter_name 
    end if 
    i = i + 1
     -- end repeat
     end  mousedown me
      end

    **** Hello Sean see responses to questions in RED
    So what sort of sprite/member holds the completed word?
    Sean -  A complete set of sprite equal the number of letters in
    the word named pe_space_
    Presumably the code you posted is attached to individual letters of the
    alphabet?
    Sean - You assumed right
    I have re-posted your code with questions and comments interspersed -
    perhaps you could addess some of these:
    global gCurrentCounter, CurrentWord, lettersofCurrentWord, sSoundName
    property SpriteNum
    on mouseDown me
    if gCurrentCounter < 10 then
    p = "00" & gCurrentCounter
    else if gCurrentCounter < 100 then
    p = "0" & gCurrentCounter
    else
    p = gCurrentCounter
    end if
    j = 1
    letter_no = spritenum
    -- I don't understand: since you declared j = 1
    -- your local var 'letter_name' will always be member("PE_1").text
    letter_name = member("PE_" & string(j)).text
    -- again, you have hard-coded something with no apparent reason
    letter_uppercase = "A" ***  Sean - In case the first letter is uppercase
    -- puppetSound 1, "A sound"
    CurrentWord = member("word - " & p)
    i = 1
    if sprite (letter_no).within(sprite(spritenum)) then
    if charToNum(member(CurrentWord).paragraph[1].char[1]) <= 90 then
    member("pe_space_" & string(i)).text = letter_uppercase
    else
    member("pe_space_" & string(i)).text = letter_name
    end if
    end if
    sprite(letter_no).loc = point(300,330)
    -- i = 2
    -- i will always equal 1 because that's how you declared it above, and it
    isn't changed
    Yes Sean, this is the reason for my been stuck on the first sprite
    or letter of my word. I was hoping to achive repeat effect by clicking on the mouse
    or keydown to get word spelt.
    But on mouseDown me or keyDown does not work with my code
    put i - This tell me that I am stuck on i = 1
    -- can you explain what this block of code is doing?
    -- I have no idea what the various members
    -- member("pe_space_" & string(i))
    -- are or how they're used
    Sean the pe_space_  are the fields where my letter PE_ get attached to,
    so when I release my letters on grab and move they are within these
    sprites/fields
    So, Sean can still help?
    repeat while i <= CurrentWord.char.count
    if charToNum(member(CurrentWord).paragraph[1].char[i]) >= 200 then
    member("pe_space_" & string(i)).text =
    member(CurrentWord).paragraph[1].char[i]
    -- 'within' is an operator that returns TRUE/FALSE
    -- so it isn't clear what you're trying to do here
    sprite(letter_no).within(sprite (10 + i))
    else
    member("pe_space_" & string(i)).text = letter_name
    end if
    i = i + 1
    end repeat
    end mouseDown
    Message was edited by: efeelo

  • MAC PRO (Early 2008) RAID CARD ISSUE - SYSTEM FREEZEHello (hopefully someone can shed some light on my issue)  I own as above a MAC PRO (Early 2008) this has a RAID card installed along with two 15k.7 cheetah hdd (320gb) and a spare drive, (which i m

    Hello (hopefully someone can shed some light on my issue)
    I own as above a MAC PRO (Early 2008) this has a RAID card installed along with two 15k.7 cheetah hdd (320gb) and a spare drive, (which i made a regular drive)
    a while ago i had to replace the RAID card battery, so i did this, over a year later the same thing happened again, but as previous just left it and the system seemed fine for ages, until last night i was working in PHOTOSHOP and everything just froze and the screen kind of appeared GREEN, could not do a single thing. So restarted the mac, this time grey screen for ages and a message appeared, (macs version of blue screen) (see attached).
    I restarted the machine and this time a flashing question mark folder!
    could not do a thing.
    so i found my copy of snow leopard and got the computer to run this and at least launch the DISK UTILITY and (Interestingly in the drop down menu RAID UTILITY was also in the menu) but it did not matter which utility i used the (RAID or DISK) neither could see any of drives, just the dvd drive.
    so looked around on you tube and various forums and discovered if i take out the RAID CARD and re-plug the main lead from the RAID card back in to the LOGIC BOARD I would be reverting the MAC to a normal regular non-RAID computer.
    After performing this HARDWARE task and inserting all three HDD, and running the DISK utility from the drop down menu via the SNOW LEOPARD disc.
    (interestingly since the RAID card had been removed the RAID UTILITY  from the drop down menu no longer appeared). running disk utility I can now only see the regular (spare) hdd and DVD Drive, but the two RAID HDD , again, still do not show up DISK UTILITY?
    O.K. so i could chuck out the RAID card (AND RAID HDD) and just go with a regular set-up, and run a back restore from Time Machine on a NEW hdd purchased.
    but what is wrong with the RAID, is the card at fault or are both HDD used for the RAID knackered? can i perform any tests, to see whats what?
    thanks for your help in advanced.

    hello people, the issue was in fact the GRAPHICS card nothing to do with the HDD or RAID system ( although this did cause issues with the RAID system it basically lost its way) below is my replay to another similar  problem some one else had!
    working in photoshop and then everything stopped working and the lot froze! only option was to force shutdown (via button).
    and try to restart, hoping all was fine, this was not the case :-(
    I had the added issue of the RAID card system, that i have, this was confused to say the lease and would not behave or work, causing the start up to hang.
    so i thought the HDD must be bust and the root cause. ( but soon learnt it was not the cause )
    ...bought a new HDD removed the RAID card and replugged the cable from RAID card into LOGIC board, ( making the computer act like any normal non-RAID system). I managed to install the OSX, using the snow leopard disk way. once the mac was running, i started to notice the screen would flicker and started to see 'artefacts'. so i started to reveal my symptoms to the web and forums and soon discovered that my graphics card could be the issue all along?.
    (nvidia geforce 8800gt 2x dvi).
    I read up on that a fix, could be either A. reply the thermal paste, as the card could be over heating or B. stick the card in the oven trick.
    Tried option A. first and nothing still issues, so last night took the plunge carried out option B. and ta da it worked! i even managed to run
    from my new HDD my lasted install OS X, absolutely fine. I then thought, maybe i could repair my RAID so replugged all the HARDWARD back in and
    carried out a disk repair and disk permissions on drives( took a small amount of time), via the SNOW LEOPARD disc - (Disk utilities) and this worked and now have my system working as it was just over 6 days ago.
    what was the cost to get this?  bought a new hdd so 40.00gbp and thermal paste and cleaner kit ( your still need to do this ) search video card trick on you tube.
    and renew thermal paste, approx 15.00gbp, technically i don't need the new HDD, but it was all part of the trial and error way i went. ( i do have extra storage as a result!)"

  • I need help, speach over got accidently turned on in my Iphone 6, now i cant get into my phone it wont take my pass word and when I try to use Siri it says not available  what do I do

    I need help, speach over got accidently turned on in my Iphone 6, now i cant get into my phone it wont take my pass word and when I try to use Siri it says not available  what do I do

    Hi, Jennifer.  
    Thank you for visiting Apple Support Communities.  
    I understand that VoiceOver has been activated and you are unable to access your device.  I have done this myself and here are the steps to disable this feature.  
    VoiceOver
    Press the home button three times quickly (formerly "Triple-click home").
    Accessibility Shortcut
    Managing Accessibility features using iTunes
    Connect your iPhone, iPad, or iPod touch to any computer with iTunes installed.
    In iTunes, select your device.
    From the Summary pane, click > Configure Universal Access in the Options section at the bottom.
    Select the feature you would like to use and click OK.
    Use Accessibility features in iOS
    -Jason H.  

  • The name of my hard drive has changed on strange letters or some words chosen by random.

    I have iMac (2011) with OS X Lion 10.7.4, and I noticed that name of my hard drive has been changing on strange letters or some words chosen by random. It's quite strange. I have other apple computers and I have never experienced such things. I can't find any logical explanation of this "activity". Sometimes it happens after sleeping mode, sometimes there is no activity from my side or from OS. How to fix it? What should I do?
    Update: I don't have any cats or other animals that can walk on my keyboard. This is definitely not because of "accidentally pressed an icon of my HD and then pressed some keys" issue.
    Message was edited by: Guzzz

    Gremlins.

  • Gaps inbetween letters of full words when Merging files to single PDF (Adobe Acrobat 9.0 Standard)

    I've raised a Bug Report although it says that I may not be contacted so thought someone else might have encountered this issue and hopefully knows what causes it and how to fix. Any advise would be greatly appreciated. Heres a copy of the Bug Report details...
    ******BUG******
    Concise problem statement:
    An intermitent issue is occuring when merging multiple files into a single PDF in Adobe Acrobat 9.0 Standard, the resulting PDF file has gaps inbetween the letters of actual words. For example the word "document" may appear in part of the PDF as "doc ument". This seems to affect various parts of the final PDF file.
    Setup: Windows XP SP2, Adobe Acrobat 9.0, Microsoft Office Standard Edition 2003
    Steps to reproduce bug:
    I am currently unable to replicate the issue on demand but this has happened three times since installing Adobe Acrobat 9.0 a month ago. The most recent occurance happened when merging 6 Microsoft Word Documents. It is a real problem due to the fact that every PDF created needs to be carefully checked and in some cases these PDFs have hundreds of pages.
    The steps used are:
    1) Open Adobe Acrobat 9.0
    2) Click File
    3) Combine
    4) Merge Files into a single PDF
    5) Add Files (select the required files)
    6) Combine Files (which then processes and creates single PDF)
    Results:
    A single PDF is then created and as mentioned is occasionally affected by this issue of random gaps appearing within words.
    Expected results:
    A single PDF with the same formatting and layout as the original files.

    Thanks for the response.
    I have checked though the Word documents that were used in the most recent merge. They don't have any spaces at these areas or strange formatting. I turned on the Show/Hide option to confirm if there was anything odd but I could not see anything. The formatting (Ctrl+D) shows the default font Arial, Regular, font 12.
    The interesting thing is that if it occurs and attempt another file merge the gaps are no longer there. Which makes me think this is unlikely to be the documents and formatting being used and more likely to be a bug in Adobe Acrobat.
    Is there anything else that might be of use to know?

  • I have microsoft word for for my Mac book pro. When I open saved letters /documents on word the date automactically changes to the current date. How do I stop this happening? Many Thanks

    I have microsoft word for for my Mac book pro. When I open saved letters /documents on word the date automactically changes to the current date. How do I stop this happening? Many Thanks

    I suggest you post your qeustion on the Microsoft Mac forums as it's their software you're having issues with and that's where the MS experts hang out
    http://answers.microsoft.com/en-us/mac

  • How do I get my new presario lap top to scan a word document in my printer scanner

    how do I get my new presario lap top to scan a word document in my printer scanner

    You will have to load up some OCR software for optical character recognition.  Free programs are on the web, just search.
    Two I use:
    Free OCR to Word
    Free OCR
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • I have pdf files which get locked when i submit for conversion to either word or rt?

    I have pdf files which get locked when i submit for conversion to either word or rt?  Joe DeFalco

    Hi, what do you mean when you say they get "locked"?

  • I update my photoshop touch to 1.6 and the native font is not scaling correctly, whenever i enter for example "hello" i only get "he" and in some cases just pieces of words after resizing it, help!!!

    I update my photoshop touch to 1.6 and the text is not working, whenever i enter for example "hello" i only get "he" and in some cases just pieces of words, help!!!
    Message was edited by: Ignacio Barrientos
    Message was edited by: Ignacio Barrientos

    Thanks Laparra!! Thanks to your original comment again-- at least now I know if I need a "work-around" I now know at-least-that-the original-fonts in PS TOUCH seem to work. No wonder the default-font worked.. but not the NEW COPPERPLATE FONT.. YaY, mystery solved.. (almost)!   [i wished they'd change that default-font..and get a new default font...Lol.. It's pretty homely looking..Hee.) I normally have been using that original TRAJAN PRO FONT.. but the letter "J" almost looks like a straight line vs a rounded J.. which at least the new COPPERPLATE FONT (which is a more normal usable font--That's not boring like aerial is,etc... ]. So yeah that will be great when all those new fonts gets fixed! // It would be great too (on my PS TOUCH wishlist, if someday they could fix the TEXT BOX too.. to be able to better & easily add A LOT [more] TEXT on a graphic .. as I always have to go to the "OVER APP" [That's the name of the app in the APPLE store] on my iPad to do that... PS TOUCH only seems to let you do TITLES vs a more lengthy text on a project. If I want to make an EASY border I take the image I've been working on into the CAMERA+.Plus App.. Simple..[but I know it can lose its resolution]. Sorry so long!! Venting haha!! Will plan to keep an eye on this post & let you all know & visa versa! LORD BLESS!!

  • I have Microsoft Office X on my Imac with OS 10.6, I cannot get the Ctriilic font in office to work in word or excell. Where do I get the cyrillic font to work in word/excel

    I have Microsoft Office X on my Imac with OS 10.6, I cannot get the Ctriilic font in office to work in word or excell. Where do I get the cyrillic font to work in word/excel

    "Could you explain where you think you have to pay something?"
    I signed up for the site and posted a question their response was that they had an answer and they required credit card imformation.
    "If your problem is to read existing Excel files, then I am very surprised that OpenOffice would not open them.  If you could send me one or provide a url I could see what the problem is (tom at bluesky dot org)."
    I can down load the files just fine and they open. the numbers in the documents will display but text will not what I get is this : "__________" where there should be text.
    Try this site and download the the Doc (rar). it will open on my computer as an excel file but there will be no text just "__________" Open office will not open this file, but excel will.
    http://militera.lib.ru/h/sovaviation/index.html

  • Some of the letters in email have 'wavy lines' above them..how do i get rid of those wavey lines...also a few of the letters of the word are missing.

    This is an example of what I am referring to; The enemy’s tactics aren’t limited to jihadist militants. He’s trying to corrupt the...Armor Up!—Profile of the Enemy
    …lest Satan should take advantage of us; for we are not ignorant of his devices.
    my team mates and their talent, so inspiring! Today we're sharing sneaks a couple new sets and I have a...
    The Stamping Scrapbooker · 1h
    Personal email replies do not contain that type of lettering. This is a daily email from David Jeramiah.org. Second example is an email from Bloglovin feed.
    Would appreciate any advice to rememdy those letters.

    IN'' tools/ option / display / formatting /Fonts & colors /advanced / character encodings / incoming mails ''
    There you can set your standard unicode (UTF-8)

  • Can't get field labels to display above for multiple fields in one cell

    I've tried searching for how to fix this to no avail. I'm new to Apex and I'm trying to get 5 fields on one line with labels above each: salutation, first name, middle initial, last name and title. I've set New Line and New Field to No for all but the first item. With the labels for each field set to Right, everything displays on one line. With the labels set to Above, fields are displayed on separate lines and I'm not sure why. There are other fields on the form as well but they are each on their own line. Any help would be greatly appreciated. My Apex version is 4.1.1.00.23. I'm running the standalone Apex Listener (current version from 7/12) with a 10g database.
    Thanks

    Hi,
    have you tried to set New Field to Yes? If that doesn't work, a test case on apex.oracle.com would be great. That's the easiest way to show you how it works.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

Maybe you are looking for