[Tex/LaTex] How to use a vertical space between paragraphs, rather than indentation

indentationpackagesparagraphsparskipspacing

I would like to have my whole document showing a blank line (or space) between paragraphs and no indentation. I know how to do it line by line, but is there a way to change that with just one or a few lines at the beginning of the document? Like a package you can install, or a new command?

Best Answer

Adding

\usepackage{parskip}

to the preamble of your document (the part between \documentclass{...} and \begin{document} will set the paragraphs to have no indentation and a bit of space between them.

Note that this isn't a complete solution, because there may be elements in your document that you don't want this format to apply to (footnotes, for example). A proper solution would involve (effectively) writing a new document class.

You can read a bit about how the parskip package works by looking at the comments in parskip.sty itself.