The intent of \ContinuedFloat (of subcaption) is to drop the environment counter by 1 and store the state of the sub-environment numbering so that it can be carried over to a subsequent floating environment (otherwise they would typically be reset when the environment counter is incremented - which happens when you issue \caption). Here's a more structured/commented look at it when looking at the figure and subfigure environments:
\begin{figure}% <-- sets the caption type to figure
\caption{..}% <-- increments the caption type counter (figure in this case)
% figure content and possible subfigures
\end{figure}
% textual content
\begin{figure}% <-- sets the caption type to figure
\ContinuedFloat% <-- decreases the caption type counter by 1 (figure in this case)
% figure content and possible subfigures
\end{figure}
The problem with this is that subsequent figures with \caption will not have the correct counter, since it's reduced with every issue of \ContinuedFloat if you don't have an accompanying \caption to step it again. That's why subcaption offers \phantomcaption if you don't want a full caption but still have appropriate numbering - the missing step. So, your full usage should actually resemble:
\begin{figure}% <-- sets the caption type to figure
\caption{..}% <-- increments the caption type counter (figure in this case)
% figure content and possible subfigures
\end{figure}
% textual content
\begin{figure}% <-- sets the caption type to figure
\ContinuedFloat% <-- decreases the caption type counter by 1 (figure in this case)
% figure content and possible subfigures
\phantomcaption% <-- increases the caption type counter by 1 (figure in this case)
\end{figure}
Without a complete minimal working example (MWE), it is not easy to understand why your subfigures may be out of sync.
\documentclassand the appropriate packages. – Peter Grill Nov 02 '12 at 03:31subfig): ContinuedFloat, and Subfloat – Werner Nov 02 '12 at 04:28