Hello although this question has been asked several times, I still can't position my figures at the right place. I have installed the float and the here packages. and the code is as follow:
\begin{figure}[H]
\centering
\includegraphics[scale=0.7]{pictures/pic.png}
\caption{The Pulse Co-Oxymetrie}
\label{fig: Massimo}
\end{figure}
even though there is more than enough space left for the image,a new page is created and the figure goes at the top of this new page,while the caption stays at the bottom meaning I have a lot of blank spaces in my thesis.
\documentclass{...}and ending with\end{document}. (In general, if there is space the figure will fit, certainly withH, so we need to see what is going on.) – Joseph Wright Feb 21 '13 at 13:55H(don't:-) then there is no positioning happening at all the construct is just a bigminipageand comes exactly where you put it. Typically it won't fit so it will have to go on the next page leaving a big gap. That is why latex has a float positioning algorithm to move floats to avoid the gaps. But[H]turns that off. – David Carlisle Feb 21 '13 at 14:03\frame{\includegraphics[scale=0.7]{pictures/pic.png}}which will put a visible border around the image. If the white space is inside that border it is part of the image so you should crop your image in an image editor before including it. – David Carlisle Feb 21 '13 at 14:07