Ever since I started to use LaTeX this issue has been causing me trouble.
When placing an image, like below, if I specify the size just a little bit over what latex wants, it places it on a new page, instead of placing it in context.
\begin{figure}[h]
\centering
\includegraphics[width=7cm]{Imgs/Image.png}
\caption{Something pretty}
\label{fig:ampFas}
\end{figure}
This is an issue because the maximum size latex tolerates is too small for most images I use. Specially those with text, like graphs with labeled axes that need to be readable.
How can I force latex to accept the size I want and still place the image within context?