How do I get a boldface math letters into beamer? The following produces an italic F and a non-italic F.
\documentclass{beamer}
\begin{document}
\begin{frame}{Title} $F \mathbf{F}$ \textbf{F} \end{frame}
\begin{frame}{Title} $F \mathbf{F}$ \textbf{F} \end{frame}
\end{document}
If use article instead, I get what I am used to see:
\documentclass{article}
\begin{document}
$F \mathbf{F}$ \textbf{F}
\end{document}
I guess the broader question is how to change math fonts in beamer (without breaking anything), and I'd appreciate your answer to that as well.
EDIT: added \textbf{F} for comparison.
beamertheprofessionalfontsoption, you can load any font package of choice. Also, if you’re usingbeamer, you are not submitting a paper to one of the remaining publishers who still require PDFTeX in 2021, so you are free to switch to LuaLaTeX and load an OpenType font. – Davislor Jan 19 '21 at 20:31.logfrom compiling the MWE? It should highlight any font substitutions, if that occurred. – Werner Jan 19 '21 at 20:35.log(and accompanying code). – Werner Jan 19 '21 at 20:44.log, for reference. – Werner Jan 19 '21 at 20:50