LaTeX の図番号の付け方が間違っている

LaTeX の図番号の付け方が間違っている

LaTeX ファイルに複数の図とサブ図がありますが、最初の数個だけが正しく番号付けされています。問題が発生しているコードの部分は次のとおりです。

\documentclass[11pt]{article}
\usepackage{graphicx}    
\usepackage{subcaption}
\usepackage{amsmath}

\begin{document}         

\begin{figure}[t]
\centering
  \includegraphics[width=5in]{figure1.png}
  \caption{Caption1}
\label{fig:fig1} 
\end{figure}

\begin{figure}[htp!]
 \caption{caption2}   \label{fig:fig2}
        \centering        
 \begin{subfigure}{\textwidth}
                \includegraphics[width=\textwidth]{subfig1.png}
                \caption{subfig1}
                \label{fig:subfig1}
        \end{subfigure}

          \begin{subfigure}{\textwidth}
                \includegraphics[width=\textwidth]{subfig2.png}
                \caption{subfig2}
                \label{fig:subfig2}
        \end{subfigure}
  \end{figure}

 \newpage
\begin{figure}[htp!]
\centering
\ContinuedFloat
          \begin{subfigure}{\textwidth}
                \includegraphics[width=\textwidth]{subfig3.png}
                \caption{subfig3}
                \label{fig:subfig3}
        \end{subfigure}


          \begin{subfigure}{\textwidth}
                \includegraphics[width=\textwidth]{subfig4.png}
                \caption{subfig4}
                \label{fig:subfig4}
        \end{subfigure}
 \end{figure}

 \newpage
\begin{figure}[htp!]
\centering 
  \includegraphics[width=5in]{figure3.png}
  \caption{Caption3}
\label{fig:fig3} 

\end{figure}

\end{document}

図 1 と図 2 は正しく番号が付けられていますが、図 3 は図 1 として番号が付けられています。図 2 のサブプロットの番号も間違っています。最初の 4 つは (a) ~ (d) とラベル付けされていますが、3 ページ目の 5 番目は再び (a) から始まります。2\ContinuedFloatページ以上では機能しないのでしょうか?

出力は次のとおりです\listfiles:

 article.cls    2007/10/19 v1.4h Standard LaTeX document class
  size11.clo    2007/10/19 v1.4h Standard LaTeX file (size option)
graphicx.sty    1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
  keyval.sty    1999/03/16 v1.13 key=value parser (DPC)
graphics.sty    2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
    trig.sty    1999/03/16 v1.09 sin cos tan (DPC)
graphics.cfg    2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
  pdftex.def    2011/05/27 v0.06d Graphics/color for pdfTeX
infwarerr.sty    2010/04/08 v1.3 Providing info/warning/error messages (HO)
 ltxcmds.sty    2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
subcaption.sty    2012/01/12 v1.1d Sub-captions (AR)
 caption.sty    2012/02/19 v3.2f Customizing captions (AR)
caption3.sty    2012/01/12 v1.4b caption3 kernel (AR)
 amsmath.sty    2000/07/18 v2.13 AMS math features
 amstext.sty    2000/06/29 v2.01
  amsgen.sty    1999/11/30 v2.0
  amsbsy.sty    1999/11/29 v1.2d
  amsopn.sty    1999/12/14 v2.01 operator names
supp-pdf.mkii
  omscmr.fd    1999/05/25 v2.5h Standard LaTeX font definitions

関連情報