
May 6th, 2013, 07:13 AM
|
|
Permanently Banned
|
|
Join Date: Apr 2013
Location: Chennai
Posts: 7
Time spent in forums: 1 h 23 m 4 sec
Warnings Level: 10
Number of bans: 1
Reputation Power: 0
|
|
|
Problem in image positioning
Hi everyone,
I'm trying to make an image appear on top, but only works if I have some text, otherwise, the image appears at the center (vertical alignment). If I only put the image, I can make it appear on top, but if I add some text (leaving no space for the image in that page), the image appears on the next page, but at the center.
Please you set this format of the coding. It has easy to get the report.
\documentclass[lettersize,oneside,11pt]{book}
\usepackage{graphicx}
\usepackage{blindtext} % for dummy text
\begin{document}
\blindtext
\blindtext
\blindtext
\begin{figure} [htbp]
\includegraphics[width=0.8\columnwidth]{figure xx}
\caption{figure xx}
\label{fig:figure xx}
\end{figure}
\end{document}
|