[Tex/LaTex] Implicit newline at the end of each paragraph

line-breakingparagraphs

In certain styles of text I define \parindent 0pt in the preamble and write the text in this manner:

paragraph 1\\

paragraph 2\\

and so forth. I wonder if there is anything I can include in the preamble for instance to modify how the end of paragraphs are interpreted so I don't have to include the \\ at the end of each?

Best Answer

Use

\setlength\parskip{\baselineskip}

or perhaps better use

\usepackage{parskip}

and never end a paragraph with \\ it just makes LaTeX generate loads of warnings and poor typesetting.

Related Question