My question is regarding subfig, there is a problem in the output, the counter for the figure changes, for instance if the figure number should be 3.17 it appears as 3.15. I test it with another figure, a single figure and not subfig, it is OK. So I am guessing I am missing something in my code that cause this problem. My codes are:
Code: Select all
\begin{figure}[H]
\centering
\subfloat[Tap water]{\includegraphics[angle=90,width=0.7\textwidth]{TW}}
\end{figure}
\begin{figure}[H]
\ContinuedFloat
\centering
\subfloat[Salt1]{\includegraphics[angle=90,width=0.7\textwidth]{s1}}
\end{figure}
\begin{figure}[H]
\ContinuedFloat
\centering
\subfloat[Salt2]{\includegraphics[angle=90,width=0.7\textwidth]{s2}}
\caption{Efd (a) Tw, (b) S1 (c) S2, at 5 levels}
\end{figure}
Thank you.