I've tried \mathbf{\hbar}, \boldmath{\hbar}, and \boldsymbol{\hbar}, but none of them produce a bold version of the symbol.
Asked
Active
Viewed 1,406 times
1
1 Answers
4
I guess you did the wrong attempts, because \boldsymbol works. However, it's better \bm (needs the bm package to be loaded after amsmath).
\documentclass{article}
\usepackage{amsmath}
\usepackage{bm}
\begin{document}
$\hbar\ne\bm{\hbar}$
\end{document}
If you are using Times based fonts with \usepackage{mathptmx}, then no attempt can be successful, because the package doesn't support bold math symbols. If that's the case, do
\usepackage{newtxtext,newtxmath}
instead of \usepackage{mathptmx}.
egreg
- 1,121,712
-
Thanks, the \includepackage{bm} worked. Trying \usepackage{newtxtext,newtxmath} led me down a long dark path that I finally abandoned. – Lee Duke Jun 20 '16 at 01:39

\documentclassand the appropriate packages that reproduces the problem. – Peter Grill Jun 18 '16 at 01:57