jetsam
jetsam

Reputation: 11

Figures in LaTeX

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

Answers (3)

PascalVKooten
PascalVKooten

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

Yamaneko
Yamaneko

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 below

Caption above

\begin{figure}[h]
  \centering
  \caption{That cat!} % caption line
  \includegraphics[width=0.3\textwidth]{thatcat.jpg}
\end{figure}

caption above

Upvotes: 1

Stephen Diehl
Stephen Diehl

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

Related Questions