[texhax] FW: huge spacing in LaTeX with linespead

Mathias messagecollector at gmx.net
Sun Aug 14 19:50:12 CEST 2011


Hello,

* Javier J. Salmerón García schrieb am So, 14.08.2011 um 11:04 (+0100):

> I started using \linespread{1.6} and I found strange spacing
> phenomena just as the one that this friend sent me. Any ideas
> of how to sort this problem out?

> is it possible to avoid this huge spacing between the image and
> the text (please see pic attached)?
>
> I am using \documentclass[12pt,a4paper,twoside,openright]{report}
> and the latex code in that part is:
>
> \begin{figure}[H]
> \begin{center}
>   \includegraphics[scale=0.5]{designExample.png}
>   \caption{Illustration of the functioning of the program}
>   \label{desEx}
> \end{center}
> \end{figure}

What about avoiding the center environment (additional vertical
space!) and use \centering instead?

\begin{figure}[H]
  \centering
  \includegraphics[scale=0.5]{designExample.png}
  \caption{Illustration of the functioning of the program}
  \label{desEx}
\end{figure}

Mathias


More information about the texhax mailing list