如何让 Beamer Math 看起来像 Article Math

如何让 Beamer Math 看起来像 Article Math

在 LaTeX 中article,数学字符比文本字符更“弯曲”:

\documentclass[12pt]{article}
\begin{document}
 $x^2 + y^2 = z^2$
\end{document}

文章数学

beamer演示中,数学字符没有相同的曲线:

\documentclass{beamer}
\begin{document}
\begin{frame}
 $x^2 + y^2 = z^2$
\end{frame}
\end{document}

投影数学

问题

我怎样才能让beamer数学看起来就像article数学一样?

我更希望解决方案只有一行(我可以将其放在 LaTeX 文件的顶部),而不是需要出现在每段数学运算旁边的东西。

答案1

添加\usefonttheme[onlymath]{serif}到你的序言中。即,

\documentclass{beamer}% http://ctan.org/pkg/beamer
\usefonttheme[onlymath]{serif}
\begin{document}
\begin{frame}
 $x^2 + y^2 = z^2$
\end{frame}
\end{document}

对于 Computer Modern 中的文本和数学,请使用serif文档类选项。也可以选择其他字体组合。请参阅此链接以获得精心编纂的收藏品。

旧版本(v3.33 之前)支持类选项\documentclass[mathserif]{beamer}

答案2

或者,您可以包括

\usefonttheme{professionalfonts}

在 - 的里面

mode<presentation>{...} 

环境。

答案3

正如@egreg 评论的那样,@Werner 的回答可能会引起冲突。实际上,Beamer 通过 支持不同的字体\documentclass

就你的情况而言:

\documentclass[mathserif]{beamer}
...

对于所有其他组合和样式以及输出,请参阅综合文件。

相关内容