I do not know whether what I am asking is even possible or not from what I know of float environment. I have two figures, actually made from a single figure too large for a single full page (Figures A and B in the MWE). My problem is where to place the caption.
I would like to keep the two figures perfectly aligned, so one caption in just one of them is hardly an option. There is no room for sidecaption neither. Another solution would be to use on of the rotating package commands and have the caption sideway, but ideally it would be best to keep all tex orientated the same way. So my question is, is there a way to define some environment that would allow the caption to get the caption over the two pages ? Alternatively, some sort of "continued caption" command would work nicely too.
In the MWE, I am using the solution reported here to have the first figure starting on an evenly numbered page.
\documentclass[a4paper,twoside,12pt]{report}
\usepackage{rotating}
\usepackage{graphicx}
\usepackage{afterpage}
\usepackage[showframe]{geometry}
\usepackage[format=plain,labelfont=bf,format=hang]{caption}
\usepackage{mwe}
\begin{document}
\afterpage{%
\clearpage%
\ifodd\value{page}
\expandafter\afterpage
\fi
{%
\begin{figure}[p]
\centering
\includegraphics[width=\textwidth,height=0.8\textheight]{example-image-a.pdf}%
\end{figure}
\clearpage
\begin{figure}[p]
\centering
\includegraphics[width=\textwidth,height=0.8\textheight]{example-image-b.pdf}%
\caption{Some sorts of very long, useless and stupid caption that I would like to have spread horizontally over the two pages below the respective figures. This is unlikely to become significant in the future.}
\end{figure}
\clearpage
}%
}
\end{document}
Edit: I made a sketch showing . Although option 1 seems something very painful to do, maybe there is a way to do option 2. Maybe ...





captionpackage give the command\ContinuedFloatso to make two pictures as one. This is certainly a solution, but it still requires manual sorting. Does anyone know how to clear the caption headings for just one caption, or change it to something like "continued" ? – HcN Oct 26 '15 at 00:37longtablesin some way or try to understand how that package works? – jarauh Oct 26 '15 at 01:48