[Tex/LaTex] Bold brackets in equations

boldbracketsequations

I want to write an equation with bold extended brackets.

For instance in:

\left[ \frac{1}{2} \vec{\nabla} \times \vec{v} \right]

I want \left[ and \right] to be bold. I already tried https://tex.stackexchange.com/a/99286/15659 nothing is doing the trick.

Best Answer

You can do

enter image description here

\documentclass{article}
\usepackage{bm}
\showoutput
\begin{document}

$[ \vec{\nabla} \times \vec{v} ]$

$\bm{[} \vec{\nabla} \times \vec{v} \bm{]}$

\end{document}

It does not work with \left, \right with the default cm fonts as there is no bold extension font (for large brackets) in that font set. However extended brackets are not needed here.

Related Question