I am trying to put a figure caption on the following page from the figure. It works fine when I run it on a small document but as soon as I try to run in on my thesis master document through a linked chapter it doesn't work. When I uncomment it the document runs fine. Any idea why the same command works for one and not the other?
\documentclass[a4paper,12pt]{report}
\usepackage{graphicx}
\usepackage{lscape}
\usepackage{amsmath}
\usepackage[CaptionAfterwards]{fltpage}
\begin{document}
\begin{FPfigure}
\centering
\includegraphics[width=1\textwidth]{Figure.pdf}
\caption{A caption}
\label{Label}
\end{FPfigure}
\end{document}
fltpagepackage, but I did notice that (a) it was last updated in 1998 and (b) it's not even part of the TeXLive distribution. Rather than tinker with getting a semi-ancient package to work, you may want to look into the capabilities of thecaptionpackage. E.g., using that package's\ContinuedFloatmacro, you could (i) define afigureenvironment on one page without a\caption, insert a page break, and (ii) "resume" saidfigurewith a\ContinuedFloatinstruction; in the second part of thefigureyou'd provide the\captionand\labelinfo. – Mico May 31 '14 at 09:25Cheers
– Jaco495 Jun 01 '14 at 01:18captionpackage for\ContinuedFolat. – Sep 27 '15 at 23:37