我正在使用 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}