[Tex/LaTex] How to make the crossed-“O” ($\oslash$) bold

boldcharacters

I'd like to bolden the crossed-o but

\textbf{$\oslash$}

does nothing!

Best Answer

There are several options for obtaining bold characters in math mode. Using the bm-package with \bm is considered the best practice for that.

Implementation

\documentclass[border=3mm]{standalone}
\usepackage{amsmath}
\usepackage{bm}
\begin{document}
Options for bold $\oslash$:
$\boldsymbol{\oslash}$ vs.
{\boldmath $\oslash$} vs.
$\bm{\oslash}$
\end{document}

Output

bm

Related Question