1

I'm a beginner in Mathematica. Like shown in the image below, I'm trying to put hat and bar to some letters (I just want to write vector notation) but only some letters can have them. What's wrong with how I do?

enter image description here

If you could provide online resource that covers these syntax, that would be more appreciable. Thank you.

(Environment) { Mac OSX 10.7, Ubuntu 11.10, Ubuntu 10.10}, Mathematica 8.0.4 Student Edition

Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055
IsaacS
  • 3,551
  • 6
  • 39
  • 61

1 Answers1

1

Use OverHat and OverBar:

OverHat /@ CharacterRange["a", "z"]

Overhat characters

OverBar /@ CharacterRange["a", "z"]

Overbar characters

JxB
  • 977
  • 1
  • 7
  • 12
  • thanks, I moved a question to http://mathematica.stackexchange.com/questions/1081/bar-and-hat-only-apply-to-certain-letters. And your suggestion almost solves my issue but not perfectly. Please see the link if still interested. – IsaacS Feb 01 '12 at 02:19