[Tex/LaTex] Memoir parskip package

memoirparagraphsparskipspacing

How do I get the same effect as using the parskip package when using the memoir class.

I want no indents, and spaces between paragraphs. What is the proper way to do this in the memoir class?

Best Answer

Memoir explicitly warns against this: (p. 47)

If you like the idea of eliminating paragraph indentation and using extra inter- paragraph space to indicate where paragraphs start and end, consider how confused your reader will be if the last paragraph on the page ends with a full line; how will the reader know that a new paragraph starts at the top of the following page?

But it also provides methods for doing so:

\setlength{\parindent}{0pt}
\nonzeroparskip

Or you can set a specific value yourself using

\abnormalparskip{<length>}
Related Question