I have three figures need to be separated into two pages so I'm using \ContinuedFloat with subfigure package. The resulting label is (a)(b) and then (after \ContinuedFloat) (a) again instead of (a)(b)(c).
\begin{figure}
\centering
\subfigure[Subfigure caption 1.]
{
\includegraphics[width=0.75\linewidth]{img1.png}
\label{fig:img1}
}\\
\vspace{40pt}
\subfigure[Subfigure caption 2.]
{
\includegraphics[width=0.75\linewidth]{img2.png}
\label{fig:img2}
}
\caption{Figure caption.}
\end{figure}
\begin{figure}
\ContinuedFloat
\centering
\subfigure[Subfigure caption 3.]
{
\includegraphics[width=0.75\linewidth]{img3.png}
\label{fig:img3}
}
\caption{Figure caption.}
\label{fig:figure}
\end{figure}
Have been trying out multiple online solutions but didn't get lucky. Help is really appreciated!
subcaptionpackage while I'm usingsubfigure. I have my whole dissertation written withsubfigurewithout realizing that it is deprecated. Changing tosubcaptionwould be a huge amount of extra work. – Yue Zhang Dec 17 '21 at 22:32subfigurepackage is deprecated (and not maintained) and replaced bysubfigpackage which define\subfloatcomand for inserting image in figure. Newestsubcaptionpackages is among them most powerful. I strongly suggest you, than instead ofsubfigurepackage usesubcaption. By this you will avoid to bunch of unexpected problems as is one, which you faced now. – Zarko Dec 17 '21 at 22:41subfiguretosubfig. Really appreciate the help and I sure won't be usingsubfigureagain. – Yue Zhang Dec 17 '21 at 23:29subfigresolve manysubfigureissues it still has some drawbacks which are solved insubcaptionpackage. Anyway,subfigis solid package. Can we conclude that your problem is solved and close your question as solved by comments? – Zarko Dec 17 '21 at 23:38