更改数学环境的默认字体

更改数学环境的默认字体

在 beamer 中,是否有办法让数学表达式默认使用衬线字体,而其余文本则使用无衬线字体?

答案1

尝试这个:

\documentclass{beamer}  
\usefonttheme[onlymath]{serif}  
\begin{document}
\begin{frame}
  Here goes the text $x + y  = Z$
 \end{frame}
\end{document}

在此处输入图片描述

相关内容