I get a wrong numbering of subfigures in the List of Figures with the following MWE.
If I remove the FIGTOPCAP option or if I put the \caption on the top, the problem is solved, but I'd like keep them. Any idea?
\documentclass{book}
\usepackage[tight,FIGTOPCAP]{subfigure}
\setcounter{lofdepth}{2}
\begin{document}
\listoffigures
\begin{figure}
\frame{
\begin{minipage}[t]{0.4\textwidth}
PIC 1
\end{minipage}
}
\caption[Short Caption]{Long Caption}
\end{figure}
\begin{figure}
\subfigure[Sub-caption A]{\label{LabelA}%
\frame{
\begin{minipage}[t]{0.4\textwidth}
PIC 2A
\end{minipage}
}%
}
\hfill
\subfigure[Sub-caption B]{\label{labelB}%
\frame{
\begin{minipage}[t]{0.4\textwidth}
PIC 2B
\end{minipage}
}%
}%
\caption[General Short Caption]{General Long Caption\label{GenLabel}}
\end{figure}
\end{document}


![The code was compiled with the optional figure argument [htbp]. enter image description here](../../images/4f648c0eca9162c23d53a61e4d53a4ee.webp)
\usepackage[tight]{subfigure} \subfiguretopcaptruein the preamble? – Qrrbrbirlbel Dec 19 '12 at 02:49