Two subfigures in one page. This figure take two page.
(a)
(b)
Page 2
(c)
(d) figure 1. The caption of this figure.
Two subfigures in one page. This figure take two page.
(a)
(b)
Page 2
(c)
(d) figure 1. The caption of this figure.
It looks like you just want
\usepackage{capt-of}
then
% get on left side of a 2-page spread
\clearpage
\ifodd\value{page}\mbox{}\clearpage\fi
% two images on this page
\includegraphics{f1}
\vspace{...}
\includegraphics{f2}
\clearpage
% two more images on this page
\includegraphics{f3}
\vspace{...}
\includegraphics{f4}
% caption
\vspace{...}
\captionof{figure}{........}
\clearpage
\begin{center} \end{center} for sub cations you could just add text a) this is the first bit or if you want the subcaptions in the list of figures etc, look to the subfigure rr caption packages.
– David Carlisle
Oct 04 '13 at 23:51