I have a number of double-page figures which I wish to present one after the other, with captions for all the figures on the page which precedes them.
The figures have a "left" and a "right" page, so I'm using dpfloat.
I've attached a small picture illustrating the effect I'm after.
At the moment I've achieved this somewhat (see the MWE, below) using afterpage, captionof and dpfloat. The effect is reasonable.
My question is: in the MWE below, I can get captions to print out on the preceding page, but at the top of the page. Is it possible to have the captions print one after the other at the bottom of the page?
Code: Select all
\documentclass[11pt,a4paper,twoside,openright]{report}
\usepackage[a4paper,bindingoffset=0cm,textheight=22cm,margin=4cm]{geometry}
\usepackage{caption}
\usepackage{lipsum}
\usepackage{afterpage}
\usepackage{dpfloat}
\begin{document}
\lipsum[1-5]
\afterpage{
\captionof{figure}{This is the caption for the first set of images over page. It would be great if these captions could be at the bottom of this page.}
\captionof{figure}{This is the caption for the section set of images over page. Seems to indent if the caption is too short?}
\vspace{\intextsep}
\begin{figure}
\begin{leftfullpage}
\fbox{\rule[-10cm]{0pt}{\textheight}Left page of figure 1\hspace{5cm}}
\end{leftfullpage}
\end{figure}
\begin{figure}
\begin{fullpage}
\fbox{\rule[-10cm]{0pt}{\textheight}Right page of figure 1\hspace{5cm}}
\end{fullpage}
\end{figure}
\begin{figure}
\begin{leftfullpage}
\fbox{\rule[-10cm]{0pt}{\textheight}Left page of figure 2\hspace{5cm}}
\end{leftfullpage}
\end{figure}
\begin{figure}
\begin{fullpage}
\fbox{\rule[-10cm]{0pt}{\textheight}Right page of figure 2\hspace{5cm}}
\end{fullpage}
\end{figure}
}
\lipsum[5-15]
\end{document}
Alastair