[Tex/LaTex] How to write a bold version of the reduced Planck constant, `\hbar`

boldfonts

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

Best Answer

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}.