[Tex/LaTex] How to put large figure caption on separate page from the figure

captionsfloats

I have a large figure (> 50% of a page) and a large caption to describe it (also >50% of page). How do I put the caption on a separate page?

Best Answer

As Thorsten already mentioned, the fltpage package might be useful here:

\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage[CaptionAfterwards]{fltpage}
\usepackage{lipsum}

\begin{document}
\begin{FPfigure}
  \centering
  \includegraphics[width=\textwidth,height=\textheight]{figure.pdf}
  \caption{Caption goes here.}
  \label{figurelabel}
\end{FPfigure}
\lipsum
\end{document}

(Please note that currently the fltpage package does not work well with hyperref, at least if you don't use the caption package additionally.)

Related Question