Edit If you prefer some additional space between paragraphs, you can't simply do
\setlength{\parskip}{<length>}
as this will also modify settings for list environments, the table of contents,... headings.
The parskip package takes care of list environments and the table of
contents but not headings as can be seen in this code
\documentclass{book}
\usepackage{lipsum}%parskip}
\usepackage{eso-pic,tikz}
\AddToShipoutPicture{%
\begin{tikzpicture}[overlay,remember picture]
\draw[blue!20!white,thin]
(current page.south west) grid [xstep=10mm,ystep=4mm] (current page.north east);
\end{tikzpicture}}
\begin{document}
\chapter{test}
\section{test}
\lipsum[1-4]
\end{document}


How can we change the amount of space between paragraphs without changing any thing else?
Original question
When I modify the usual \parskip it adds space to everything: formulas, titles,.. I want to change spacing only between paragraphs, not any other things. The parskip package does not help.
How can I avoid that?
\usepackage{parskip}. – cfr Apr 26 '15 at 22:16parskippackage is designed to do exactly what you say you want to do. Without an example or any sort of information at all, I obviously can have no idea in what way it fails to meet your requirements or why it does so. For all I know, you aren't even using LaTeX. That was just a guess. If not, obviously it won't work. – cfr Apr 26 '15 at 22:38\parused internely therein. when i read this question the first time it comes to me the answer: add vertical space manully. – touhami Apr 27 '15 at 05:59\parcommand or with blank line, the idea is redefine one of them to be slightly different – touhami Apr 27 '15 at 22:29parskippackage is designed to do just what the you seem to want. It makes adjustments so that the things which use\parskipfor spacing don't all end up inserting too much vertical space when\parskipis set to a non-zero minimum. At least, that's how I understand its purpose. As far as I know, that's the reason to useparskiprather than setting\parskip&\parindentmanually. Just saying it 'doesn't work' is not helpful. If you say in which specific ways it falls short, it might be possible to suggest additional changes to better realise your ideal. – cfr Apr 27 '15 at 23:24parskipdoesn't work. – cfr Apr 28 '15 at 12:14parskipdoesn't answer the OP's need it change spacing – touhami Apr 28 '15 at 20:04parskip'doesn't help' which suggested to me that the problem was some completely different one. The issue is that the package does not solve all of the issues. Is that right? – cfr Apr 28 '15 at 23:02