更改 amsbook 的章节格式

更改 amsbook 的章节格式

我正在尝试更改 amsbook 类型文档的章节标题格式: 在此处输入图片描述

看起来像这样

在此处输入图片描述

具体来说,我想将 CHAPTER 1 改为 Chapter 1,使其更大并将其对齐到左侧。

我尝试调整@makechapterhead。但我只能将 CHAPTER 1 变成 Chapter 1,而没有改变大小或对齐方式。有什么想法吗?

答案1

此更改应该接近您想要的值。您可能希望调整这些\vspace值,但这应该很简单。

\documentclass{amsbook}

\makeatletter
\def\@makechapterhead#1{\global\topskip 2.5pc\relax
  \begingroup
  \huge\bfseries                                                                
  \chaptername\enspace\thechapter\par                                           
  \vspace{1pc}                                                                  
     #1\par \endgroup                                                           
  \vspace{2pc}                                                                  
  }
\makeatother

\begin{document}
\mainmatter
\chapter{Introduction}
Some text.
\end{document}

相关内容