I need to create a figure an place it at the bottom of the page (figure includes the image and some caption text). Is there a way to do it?
I tired using figure environment, but it sends my image all the way to the end of the document.
MWE:
\documentclass[a4paper, 12pt]{article}
\usepackage{xltxtra}
\setmainfont[Mapping=tex-text]{Times New Roman}
\usepackage[russian]{babel} % for russian hypenation
\begin{document}
\pagebreak
\section*{\centering Методика}
Some text.
\begin{figure}[b]
\centering
\includegraphics[width=\textwidth]{labyrinth.png}
\end{figure}
Some more text.
\pagebreak
\section*{\centering Результаты}
\end{document}
The figure ends up being stuffed on the very last page.
I'm using XeTeX 3.1415926-2.2-0.9995.2 (TeX Live 2009/Debian).

