[Tex/LaTex] How to change separation space between paragraphs

parskip

I think it's probably unnecessary to think of changing the length of skips between paragraphs in the sense that the standard spacing of one skip defined by the parskip package is always fine. But what about if I wanted two skips instead of one, or even worse if I wanted to change the length of the skip. I was thinking about modifying the value of \parskip, which apparently solves the problem. Truth is it also modifies my enumerate environments and I don't want that. Actually that makes me think that it may probably do the same thing with some other environments. How can I solve this?

Best Answer

Apart from the "dont' do this" warning that you will most certainly receive, the memoir class allows you to change the regular \parskip value without messing up other things, by providing an \abnormalparskip macro:

\documentclass{memoir}
\usepackage{blindtext}
\abnormalparskip{2\baselineskip}
\begin{document}
\blinddocument
\end{document}

output of code