正如我所评论的,这在某种程度上是一种印刷标准,即在章节名称后面的第一个段落是不是缩进。
但是,我们可以通过 来克服这个问题\hspace*{\parindent}
,我将其宏观化为\indentthis
。
\documentclass{book}
\newcommand\indentthis{\hspace*{\parindent}}
\begin{document}
\chapter{Introduction}
\indentthis Blah blah is indented.
This will be auto-indented.
\end{document}