如何仅更改标题页的字体类型?

如何仅更改标题页的字体类型?

我使用 (Times new roman) 来编写我的所有报告,\usepackage{times}但我只需要将标题页更改为普通的乳胶字体类型。该怎么做?

答案1

您应该使用包mathptmx或而newtx不是times。但是,更改标题页的字体:

\documentclass{article}

\usepackage{newtxtext}
\usepackage{newtxmath}
\title{Some text for the title}
\author{Me and others}
\begin{document}
\begingroup
\fontfamily{lmr}\selectfont
\maketitle
\endgroup

\section{foo}
bar
\end{document}

相关内容