我怎样才能缩进第一段?

我怎样才能缩进第一段?

我正在写一篇论文mla13.sty 包。它基本遵循 MLA 格式,只是第一段不缩进。我想我大概明白为什么了,因为这会删除居中标题后面的空格:

%removes the space added to the center enviornment
\newenvironment{nospacecenter}{\parskip=0pt\par\nopagebreak\centering}
{\par\noindent\ignorespacesafterend}

然后它被这样调用:

\begin{nospacecenter}
\@title
\end{nospacecenter}
\endgroup}

但这样一来,我的所有第一段都向左对齐,但后续段落都正确缩进。我该如何修复这个问题?

答案1

我尝试删除它{\par\noindent\ignorespacesafterend},似乎问题已经解决了!

相关内容