I would like to have a figure that occupies whatever white space is left at the bottom of the page without having to fine tune it manually.
Here is an attempt of what I'm trying to do:
\documentclass[a4paper]{report}
\usepackage{lipsum}
\usepackage{float}
\usepackage{graphicx}
\begin{document}
\lipsum[1-2]
\begin{figure}[H]
\centering
\includegraphics[height=\vfill]{example.png} % error: illegal unit of measure
\end{figure}
\end{document}
I'm looking for a command to replace the incorrect \vfill, but give the effect I'm looking for. Thank you
\vfillnormally does? Or perhaps like citations and references by requiring the compiler to run twice? I agree that it will still require some attention, but I only intend to use it where there is enough space to show the image. – Tymric May 19 '14 at 14:45