如何让 beamer 下的粗体 $\mathbf{A}$ 与 article 下的一样?

如何让 beamer 下的粗体 $\mathbf{A}$ 与 article 下的一样?

粗体的下投影器看起来更粗,与其他正常字符不太匹配,如下所示:

\documentclass{beamer}
\usepackage{newtxtext,newtxmath}
\usepackage{amsmath} 

\begin{document}
    \begin{frame}
        A$\mathbf{A}$
    \end{frame}
\end{document}

f1 文章下的粗体看起来与其他普通字符相匹配,如下所示:

\documentclass{article}
\usepackage{newtxtext,newtxmath}
\usepackage{amsmath} 

\begin{document}
    A$\mathbf{A}$
\end{document}

f2

我应该怎么做才能让 beamer 模式下的字体和文章中的一样?

答案1

[...]
\usefonttheme{serif}
\usepackage{amsmath} 
\usepackage{newtxtext,newtxmath}
[...]

相关内容