How to turn off PARAGRAPH INDENTATION
If you would like to have none of your paragraphs indented, insert the
following command in your document, before the \begin{document} line:
\setlength{\parskip}{\baselineskip}
\setlength{\parindent}{0em}
If you would like to have only some paragraphs not indented, insert the
command
\noindent
before the beginning of each paragraph.
|