Reputation: 11
How do you have a figure imported so that it appears on the bottom of a page with a caption? When I import it and put a caption on it normally, it always appears at the top of a page.
Upvotes: 1
Views: 3117
Reputation: 21443
To add to freyrs:
If if you put \caption
above the \includegraphics
the caption will be above the figure, if you put \caption
below the \includegraphics
the caption will appear below the figure.
Upvotes: 0
Reputation: 3563
Just an example:
Caption below
\begin{figure}[h]
\centering
\includegraphics[width=0.3\textwidth]{thatcat.jpg}
\caption{That cat!} % caption line
\end{figure}
Caption above
\begin{figure}[h]
\centering
\caption{That cat!} % caption line
\includegraphics[width=0.3\textwidth]{thatcat.jpg}
\end{figure}
Upvotes: 1
Reputation: 8409
\begin{figure}[b]
your figure
\end{figure}
See this link, for more syntax:
http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions#Figures
Upvotes: 3