[Tex/LaTex] How to reduce spacing between figure and text

floatsrevtexspacing

I want to reduce spacing between figure and text (not caption) and between paragraphs. I'm using revtex4 package (two column style).

Best Answer

To reduce the spacing between figures and text, you can use \belowcaptionskip if all your figures have a \caption:

\setlength\belowcaptionskip{-3ex}

\begin{figure}[h]
    \centering
    Figure contents
    \caption{Figure caption}
\end{figure}

In order to reduce the spacing between paragraphs, set \parskip:

\setlength{\parskip}{0mm}

To see the current value, use \the\parskip (displayed in document) or \showthe\parskip (displayed in latex output).

Related Question