I have a problem in placing a picture into a page. I used a simple code as below:
\begin{figure}[t!]
\centering
\includegraphics[keepaspectratio, width=0.6\textwidth]{./pics/5_11}
\caption{Number of RSUs that each vehicle has encountered}
\label{fig:RSUencountered}
\end{figure}
The problem is that the picture is placed exactly in the middle, although I used position specifier (t!).
How can I instruct the latex to put the picture at the top of the page.
BTW: this picture is the only element in the page.
\clearpage(or something similar) just before using\begin{figure}...\end{figure}, right? If this is the case, add\mbox{}(or\null) after thefigureenvironment before starting a new\chapterand your alignment should be fixed. Since there's nothing else on the page, LaTeX centres it, since that would be the best way to present the information. – Werner Aug 07 '12 at 20:38\clearpage\begin{figure}[t]...\end{figure}\nullshould work. Are you able to reproduce the problem on a smaller scale using something likelipsumfor dummy text and (say)\rule{.6\textwidth}{.5\textheight}for your image? – Werner Aug 07 '12 at 20:56