I am trying to make two figures (namely a map and its legend together with a long caption) appear side by side on separate pages.
So far, I have managed to put them on the next two available pages after their position in the code and let the text flow neatly around them:
\documentclass{scrbook}
\usepackage{graphicx,blindtext}
\usepackage[pdfpagelayout=TwoPageRight]{hyperref}
\begin{document}
\blindtext
\begin{figure}[!hp]
\includegraphics[height=\textheight,width=\textwidth]{example-image-a}
\end{figure}
\begin{figure}[!hp]
\includegraphics[height=.5\textheight,width=\textwidth]{example-image-b}
\begin{minipage}{\textwidth}
\caption{Caption}
\blindtext
\end{minipage}
\end{figure}
\blindtext[10]
\end{document}
However, I do not know how to ensure those pages actually appear next to each other, i.e. how to ensure that figure A appears on the first even page following its position in the code.
In other words, how can I avoid results like this (produced with \blindtext[5] in the beginning):



\begin{minipage}{\textwidth} \caption{Caption} \blindtext \end{minipage}in your MWE resembles this long caption. Is that correct? – leandriis Mar 20 '21 at 10:54minipagewas to allow for the lower half of the second page to be 'designed' like normal text, e.g. for the insertion of references etc. But yes in this MWE it's only for that lengthy caption. – schoekling Mar 20 '21 at 11:01