如何将 beamer 中的字体更改为普通 LaTeX 文档中的标准字体?
据我所知,LaTeX 中的标准字体是computer modern roman
,但我不知道如何将字体设置为这种字体。
答案1
\documentclass{beamer}
%% Language and font encodings
\usepackage[english]{babel}
\usefonttheme{professionalfonts} % using non standard fonts for beamer
\usefonttheme{serif} % default family is serif
\usetheme{Warsaw}
\usepackage{fontspec}
\begin{document}
\begin{frame}
\[\frac{b}{c} ABC a\cdot n\]
\end{frame}
\end{document}