将 AMS 文章的标题更改为小写字母

将 AMS 文章的标题更改为小写字母

这个问题展示了如何在使用 amsart.cls 时删除标题的全大写字母。但是,我仍然希望在标题中使用小写字母(和粗体字体),这样标题看起来就不会比章节标题小。我们该怎么做?

答案1

改编链接问题中的示例,有两个选项。要么\textsc{}手动输入标题:

\documentclass{amsart}
\usepackage[T1]{fontenc}
\date{\today}
\author{My name}
\title{\textsc{My $abc\beta$-title With Caps}}

\begin{document}

\begingroup
\def\uppercasenonmath#1{} % this disables uppercasing title
\let\MakeUppercase\relax % this disables uppercasing authors
\maketitle
\endgroup

\section{My section}
My text

\end{document}

或者放入\scshape临时的重新定义\uppercasenonmath

\documentclass{amsart}
\usepackage[T1]{fontenc}
\date{\today}
\author{My name}
\title{My $abc\beta$-title With Caps}

\begin{document}

\begingroup
\def\uppercasenonmath#1{\scshape} % this disables uppercasing title
\let\MakeUppercase\relax % this disables uppercasing authors
\maketitle
\endgroup

\section{My section}
My text

\end{document}

结果:

在此处输入图片描述

请注意,这两个选项都需要\usepackage[T1]{fontenc}使用 T1 字体编码,因为 OT1 编码没有 Computer Modern 字体的小型大写字母+粗体组合。

还请注意,这需要 PDFLaTeX。

相关内容