3

Possible Duplicate:
Bold math symbols?

I am wondering if it is possible to bold characters under math-mode, for instance, is it possible to bold $\langle \rangle$?

SoftTimur
  • 19,767

1 Answers1

10

Try the bm package:

\documentclass{article}
\usepackage{bm}
\begin{document}
$\bm{\langle \rangle}$
\end{document}
frabjous
  • 41,473