使用 amsbook 样式时如何停止缩进第一段?

使用 amsbook 样式时如何停止缩进第一段?

我正在使用 amsbook 样式,并且我希望第一段不缩进 - 我可以在标题中添加什么来实现这一点?

我不想使用 /noindent,因为这样我就必须在整篇 200 页的文档中使用它,我更愿意自动执行它。

答案1

您需要重新定义\section。 的相关部分amsbook.cls

\def\section{\@startsection{section}{1}%
  \z@{.7\linespacing\@plus\linespacing}{.5\linespacing}%
  {\normalfont\bfseries\centering}}

你要这个:

\makeatletter
\def\section{\@startsection{section}{1}%
  \z@{-.7\linespacing\@plus\linespacing}{.5\linespacing}%
  {\normalfont\bfseries\centering}}
\makeatother

注意负值-.7

\makeatletter ... \makeatother如果不想编辑,请使用amsbook.cls

答案2

\documentclass{amsbook}
\begin{document}
\noindent Don't be lukewarm. If you cannot be the best, be the worst.

Second paragraph here\ldots
\end{document}

在此处输入图片描述

相关内容