如何更改 AMSBook 类中的标题样式

如何更改 AMSBook 类中的标题样式

考虑以下 MWE:

\documentclass{amsbook}

\begin{document}
\chapter{Chapter 1}
\section{Section 1}
\newpage
\section{Section 2}
\end{document}

它产生在第二页的顶部

在此处输入图片描述

我想将\textsc页眉中的样式更改为正常字体样式。我该如何实现?

答案1

您可以从中删除大写部分\chapterrunhead

\documentclass{amsbook}
\usepackage{xpatch}

\makeatletter
\xpatchcmd{\chapterrunhead}{\uppercasenonmath\@tempa}{}{}{}
\makeatother

\begin{document}
\chapter{Chapter 1}
\section{Section 1}
\newpage
\section{Section 2}
\end{document}

在此处输入图片描述

相关内容