[Tex/LaTex] Controlling the spaces between paragraphs

spacing

In the IEEE latex package, I see that the paragraph spacing is set to zero (.cls file)

% Controls the spacing between paragraphs in lists. 
% IEEE does not increase spacing before or after paragraphs 
% so this is also zero. 
% With IEEEtran.cls, global changes to
% this value DO affect lists (but not IED lists).
\parsep             \z@

However, in the output PDF file, I see some spacings.

enter image description here

Why?

Best Answer

It is difficult to answer your question without knowing your setup. If you have chosen the option twoside, you also have turned on flushbottom I presume, and then LaTeX will add space also between the paragraphs to stretch the page.

Try the option oneside, or add the command \raggedbottom as the last command in the preamble.

The class files defines \parskip as:

\parskip 0ex plus 0.2ex minus 0.1ex

so check your code and packages that you not unintentionally have altered this definition.