I typically typeset my documents in xelatex. With unicode-math and Cambria Math fonts a variety of math-styles are possible. This time the requirement is to use just pdflatex. How can I type (with STIX fonts preferably) in the \mathbfcal style? I am aware of this popular post, however, I cannot find any prescription there.
I am adding a minimal example
\documentclass[]{article}
\usepackage{stix}
\usepackage{amssymb,amsmath,mleftright,mathtools}
\begin{document}
$\mathbfscr{G}$
\end{document}
It produces
which is the bold script style, not the bold calligraphic, which I am used to
For completeness, this is the solution using bm package
\documentclass[]{article}
\usepackage{stix}
\usepackage{amssymb,amsmath,mleftright,mathtools}
\usepackage{bm}
\begin{document}
$\bm{\mathcal{G}}$
$\mathcal{G}$
\end{document}





\usepackage{bm}and then)\bm{\mathcal{N}}. – Werner Jan 28 '21 at 16:35Too many symbol fonts declared. I have in the preamble:\usepackage{amssymb,amsmath,mleftright,mathtools} \usepackage{bm} \usepackage{stix}– yarchik Jan 28 '21 at 17:04\usepackage{stix} \usepackage{mleftright,mathtools} \usepackage{bm}– Werner Jan 28 '21 at 17:14\mathbfscr– David Carlisle Jan 28 '21 at 17:42bmsolution works. – yarchik Jan 28 '21 at 18:18