我正在类 ( ) 中编写文档elsarticle
,该类会缩进所有段落的第一行,包括标题后面的段落。但是,我想恢复到默认的 Latex 行为,即缩进除第一段以外的所有段落。
当然,我可以使用手动完成此操作\noindent
,但没有更好的方法吗?
答案1
\if@afterindent
您可以将此缩进的内部使用条件永久设置为“false”。
\documentclass[11pt]{elsarticle}
\usepackage[T1]{fontenc}
\usepackage{blindtext} % drop in actual document
\makeatletter
\let\@afterindenttrue\@afterindentfalse
\makeatother
\begin{document}
\blinddocument % drop in actual document
\end{document}
请注意 »盲文« 包仅用于在此创建虚拟文档,因此不是解决方案的一部分。