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)로 표시되어 있지만 세 번째 페이지의 다섯 번째는 다시 (a)에서 시작됩니다. \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

관련 정보