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?
5 Answers
The ccaption package provides continued captions via \contcaption:

\documentclass{article}
\usepackage{graphicx}% http://ctan.org/pkg/graphicx
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage{ccaption}% http://ctan.org/pkg/ccaption
\begin{document}
\section{A section}
\lipsum[1-10]
\begin{figure}[t]
\centering
\fbox{\includegraphics[height=.6\textheight]{tiger}}
\caption{(Continued on the following page.)}% First caption
\label{fig:tiger}
\end{figure}
\begin{figure}[t]
\contcaption{\lipsum[1-2]}% Continued caption
\end{figure}
\lipsum[11-15]
\end{document}
It effective does what you suggest:
\addtocounter{\@captype}{\m@ne}% Add -1 to float counter
\refstepcounter{\@captype}% Step and mark float counter
% ...and the rest
Note though that continuous captions could cause problems when used in conjunction with hyperref.
- 603,163
-
7Why does it cause errors with hyper ref and how could that be avoided? – SumNeuron Mar 15 '17 at 23:54
The easiest method I came up with is to break up the caption into a second figure and use the \addtocounter command to make sure the caption has the same figure number
\begin{figure} [b!]
\centering
\includegraphics[width=\textwidth]{figure.pdf}
\caption{(Caption next page.)}
\label{figurelabel}
\end{figure}
\addtocounter{figure}{-1}
\begin{figure} [t!]
\caption{(Previous page.) Caption goes here.}%missing
\end{figure}
Notes:
I included "(Caption next page.)" as the \caption{} attached to the actual figure and prefixed the true caption with "(Previous page.)".
I used the [b!] and [t!] options for figure and caption, respectively. This isn't necessary, but it makes sure they are as close as possible to each other within the document.
Drawbacks:
LaTeX will not automatically make sure that the caption is on the page immediately after the figure.
The caption will not be "reattached" to the figure if the caption is made short enough to fit on the same page (which would be nice LaTeX best practices).
As Yiannis Lazarides notes, the figures would ideally appear on odd pages and captions would appear after them on even pages, so you can always see both at the same time. This hack doesn't ensure that happens.
- 730
-
3I think this is the best option because it works and it tells precisely what it does. – Hugo Trentesaux Nov 16 '20 at 16:41
-
@HugoTrentesaux I have a problem. When using \listoffigures I get that the "caption figure" is also listed. Is it possible to fix it? – sam wolfe Jun 03 '22 at 11:15
-
1@samwolfe Try looking at 331868 or 43995. Not sure there is an elegant way to do it, but you should be able to hack it together. – Jess Riedel Jun 04 '22 at 08:53
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.)
-
2I'm happy to accept this answer since many people may find it useful. Personally, the fltpage package (which is experimental) did not work for me after about an hour of tracking down one mysterious error after another. – Jess Riedel May 14 '12 at 16:48
The answer provided by @user2574 works for me on overleaf after correcting fltpage to fitpage. I inserted this line on the document head.
\usepackage[CaptionAfterwards]{fitpage}
Then I inserted images using the following codes.
\begin{FPfigure}
\centering
\includegraphics[width=\textwidth,height=\textheight]{figure.pdf}
\caption{caption}
\label{label}
\end{FPfigure}
- 1
Inspired by @Jess Riedel, my solution is as follows.
\begin{figure}[ht!]
\centering\includegraphics[width=\textwidth]{figure.pdf}
\caption{
% part of caption here
(continued)
}
\label{fig}
\end{figure}
\begin{figure}[ht!] % continued
\caption*{
(continued)
% caption continued
}
\end{figure}
Here, through the command \caption*{}, we don't need to use the command \addtocounter{figure}{-1} to manage the number of figures manually.
- 1
- 1
-
Welcome to TeX.SE! Please add an compilable TeX code for an fast proof. – Mensch Mar 18 '24 at 14:03
\newlineworks. – TobiO Jul 08 '16 at 16:24