我有一篇很长的文档(论文),我想使用两种不同的字体。对于第一部分,包含首页和目录,我想使用mathpazo
。之后,我想切换到default
TeX 字体。这是一个 MWE,显示了结构以及我想要切换的位置:
\documentclass{memoir}
\usepackage[sc]{mathpazo}
\begin{document}
Front page
\clearpage
\tableofcontents
\clearpage
%%
%The default font of LaTeX should be used from here and onwards
%%
\section{Main section 1}
Text ....
\section{Main section 2}
Text ....
\section{Main section 3}
Text ....1
\end{document}
最好的方法是什么?如何在目录之后切换到正常字体?
答案1
一种方法是不要通过加载序言来触碰全局字体命令mathpazo
。您可以在组内本地切换字体:
\documentclass{memoir}
\begin{document}
\begingroup
\renewcommand{\rmdefault}{pplx}
\normalfont
Front page
\clearpage
\tableofcontents
\clearpage
\endgroup
\section{Main section 1}
Text ....
\section{Main section 2}
Text ....
\section{Main section 3}
Text ....1
\end{document}