I have 2 subfigures vertically arranged using the subcaption package. I can set the vertical space between the 2 to something specific (using \bigskip or \vspace), but I would like to put as much space as possible between the 2 instead, so that the first subfigure is at the top of the page, and the second one at the bottom (with the caption for the whole figure beneath it) - something like \vfill.
Minimal working example:
\documentclass[10pt,a4paper]{article}
\usepackage{graphicx}
\usepackage{subcaption}
\begin{document}
\begin{figure}
\begin{subfigure}{\textwidth}
\centering \rule{4cm}{4cm} % 1st subfigure: \includegraphics{fig}...
\end{subfigure}
\par\bigskip % maximise vertical space here instead
\begin{subfigure}{\textwidth}
\centering \rule{4cm}{4cm} % 2nd subfigure: \includegraphics{fig}...
\end{subfigure}
\caption{Some caption}
\end{figure}
\end{document}


\vspace*{\fill}as the "filler" instruction? – Mico Nov 28 '13 at 19:48subfigureenvironment? – Sigur Nov 28 '13 at 22:59subcaption:-) – Nov 28 '13 at 23:01captionalso. – Sigur Nov 28 '13 at 23:06subcaptioncan be standalone. May be you have to update. – Nov 28 '13 at 23:16