[Tex/LaTex] Set noindent for entire file

indentation

Possible Duplicate:
How to disable automatic indentation on new paragraphs?

Is there a way to set noindent for all paragraphs gloablly in latex, so that I do not have to manually do \noindent before each paragraph?

Best Answer

Set \parindent to 0pt in the preamble:

\setlength\parindent{0pt}
Related Question