I have some tall images which must be placed on the top of the pages, but under the
\subsubsection{titles}
. These images (diagrams) take about 75-85% of the page height. After each image there's a:
Code: Select all
\begin{description}
[... 20-30 lines...]
\end{description}
\subsubsection{titles}
+ image + description and so on...I managed to place and center the images correctly by using:
Code: Select all
\usepackage{float}
[...]
\begin{figure}[H]
\noindent\makebox[\textwidth]{
\includegraphics[width=1.25\textwidth]{tall_image.png}}
\centering
\end{figure}
Basically, the text on the page after each image has much white space between each line: like some sort of text "vertical" justification. Basically the text is vertically spread in order to "fill" the whole page.
I attached a small screenshot which should explain the problem.
How can I fix this?
Thanks