1

I've tried \mathbf{\hbar}, \boldmath{\hbar}, and \boldsymbol{\hbar}, but none of them produce a bold version of the symbol.

Marcos
  • 5,422
Lee Duke
  • 11
  • 2

1 Answers1

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}

enter image description here

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