Possible Duplicate:
How to influence the position of float environments like figure and table in LaTeX?
When I compile the following latex snippet:
\documentclass[11pt]{report}
\usepackage{graphicx}
\begin{document}
\tableofcontents
\chapter{1}
\begin{figure}
\centering
\includegraphics[width=1\textwidth]{Picture.PNG}
\caption{Plug-in Landing Page }
\label{fig:ASuRALP}
\end{figure}
\end{document}
I have a problem: The image is put to the next page. I have to reduce the size of the image a lot if I want it to fit in this chapter title page. The very strange behaviour that I observe is that at the human eye, the picture has clearly the place to fit into this first page, and if I put text instead of the picture, there is a lot of text that fits into the first page (a lot more than the picture size).
Does anyone has an idea of the problem ?