[Tex/LaTex] LYX: How to remove white spaces between two figures

floatslyxspacing

Lyx is leaving a lot of white space between figures. I want to reduce this white space. How can I do this in LYX, I am not familiar with latex coding. Attached is the image of the actual page.
In lyx documents I have figure floats as
float:Figure
float:Figure
float:Figure
enter image description here

Best Answer

\setlength\floatsep{1.25\baselineskip plus 3pt minus 2pt}
\setlength\textfloatsep{1.25\baselineskip plus 3pt minus 2pt}
\setlength\intextsep{1.25\baselineskip plus 3pt minus 2 pt}

Put the above in the preamble, and change the 1.25 to desired one.

The First Line is for length between two adjacent floats

The Second Line - for floats on top and bottom of text only For floats at top - length between float and text below it For floats at bottom - length between float and text above it

The Third Line- for floats in the middle of text only - length between text above it, and text below it.