I've been using LaTeX for a while and I'm doing a project at the moment which has a lot of testing figures (characters A-Z, a-z, numbers 0-9). I've put them all as subfloats in a figure and I've used \ContinuedFloat to make them span over 5 pages. However, when it gets to the 2nd \ContinuedFloat it starts numbering the subfigure's Figure number backwards, even though it should still be the same figure (it counts from Figure 1 to Figure 0, Figure -1, Figure -2, Figure -3). After this figure there are more figures and those then count up again (Figure -2, Figure -1, Figure 0, Figure 1, Figure 2).
The subfigure numbers of the subfigures, are correctly numbered.
I've added an example image to show what's happening.
I'll add a part of the code from somewhere in the middle to show how I've inserted all the subfigures:
Code: Select all
\subfloat[\label{fig:test-15}]{\includegraphics[height=28mm, keepaspectratio=true]{testimages/test-character-15.jpg}}%
\end{center}
\end{figure}
\begin{figure}[!hbtp]
\ContinuedFloat
\begin{center}
\subfloat[\label{fig:test-16}]{\includegraphics[height=28mm, keepaspectratio=true]{testimages/test-character-16.jpg}}%
\qquad
Thanks in advance!
Heleen