投影机中的 Palatino 文本与 CMR 数学?

投影机中的 Palatino 文本与 CMR 数学?

我尝试了很多组合,但还是无法成功。如果大家有什么建议,我将不胜感激。

答案1

使用serif选项将默认系列设置为罗马,然后\rmdefault根据\mathfamilydefault需要进行设置:

\documentclass[serif]{beamer}

\renewcommand\rmdefault{pplx}
\renewcommand\mathfamilydefault{cmr}

\begin{document}

\begin{frame}{Frametitle}
  Some text\\
  $E=mc^2$
\end{frame}

\end{document}

注意:下次请发布最小工作示例(MWE)概述您尝试过的“多种组合”中的至少一种;-)

相关内容