0

I'm writing a paper using the mla13.sty package. It adheres to MLA style mostly, except that it doesn't indent the first paragraph. I think I sort of understand why, since this removes the space that comes after from the centered title:

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

and then it's called like this:

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

But with this, all my first paragraphs are flushed left, but subsequent paragraphs are correctly indented. How can I fix this?

Florian
  • 2,919
Jonathan
  • 752

1 Answers1

1

I tried deleting {\par\noindent\ignorespacesafterend} and that seems to have fixed it!

Jonathan
  • 752