如何更改 AMS 文章标题的外观

如何更改 AMS 文章标题的外观

我正在用 编写文档\documentclass{amsart}。如何更改此类文档中标题的外观?它设置为全部大写、粗体和特定大小。我可以用 将其更改为斜体\textit{},但我无法执行任何其他操作。我想将标题更改为大罗马字体。这似乎\renewcommand{\title}可行,但我不知道如何使用此命令。感谢您的帮助!

答案1

您可以\@settitle在那里重新定义和引入您的字体修改;一个小例子,抑制粗体字体并使用\LARGE

\documentclass{amsart}

\makeatletter
\def\@settitle{\begin{center}%
  \baselineskip14\p@\relax
    %\bfseries
    \normalfont\LARGE%<- NEW
\uppercasenonmath\@title
  \@title
  \end{center}%
}
\makeatother
\title{This is an interesting title}

\begin{document}

\maketitle

\end{document}

在此处输入图片描述

相关内容