I would want to know in which package the symbol \hbar is defined. In fact I ask this because I need to create a letter like \hbar but with 'k' instead of 'h'.
Asked
Active
Viewed 1.5k times
15
1 Answers
17
\hbar is defined in the LaTeX kernel:
\newcommand{\hbar}{\mathchar'26\mkern-9mu h}
So
\newcommand{\kbar}{\mathchar'26\mkern-9mu k}
should do what you want (although it might need some customization if other fonts are used).
egreg
- 1,121,712
texdef -t latex hbarwill reveal the definition. You can then look for the "official" one inlatex.ltx:less $(kpsewhich latex.ltx)– egreg Mar 03 '12 at 14:05