I have a problem with brackets and I hope you can help me out:
I need Parentheses in math mode that are bold and large. Combinations of \boldsymbol{} and \Big do not work. Here's a working example to illustrate:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
Both large parenteses are the same, although one should be bold:
\begin{equation}
\sin \boldsymbol{\Big(}\Big( \text{...}\boldsymbol{\Big)}
\end{equation}
Works with normally-sized parentheses:
\begin{equation}
\boldsymbol{(}()\boldsymbol{)}
\end{equation}
\end{document}
I also tried putting the \Big before the \boldsymbol{(}, but that does not compile.
Is this a bug? If not, how do I make this work? Any solution is highly appreciated!
Thanks a lot in advance!
Edit:
\pmb{\Big(} works, but is quite ugly. If possible, I would prefer a better-looking solution.
