我的包含子图的图形被编号了两次

我的包含子图的图形被编号了两次

由于某种原因,我的图形顶部和底部有两个不同的数字。

这是我正在使用的代码。

\begin{figure}
    \centering
    \begin{subfigure}[b]{0.475\textwidth}
        \includegraphics[width=\textwidth]{TiO__15_58_004_01_05_18_.png}
        \caption[Network2]%
        {{\small 15 minutes 58 seconds.}}    
        \label{fig:gg}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.475\textwidth}  
        \includegraphics[width=\textwidth]{TiO__31_54_004_01_05_18_.png}
        \caption[]%
        {{\small 31 minutes 54 seconds}}    
        \label{}
    \end{subfigure}
    \vskip\baselineskip
    \begin{subfigure}[b]{0.475\textwidth}   
        \includegraphics[width=\textwidth]{TiO__35_05_004_01_05_18_.png}
        \caption[]%
        {{\small 35 minutes 5 seconds}}    
        \label{}
    \end{subfigure}
    \quad
    \begin{subfigure}[b]{0.475\textwidth}   
        \includegraphics[width=\textwidth]{TiO__40_42_004_01_05_18_.png}
        \caption[]%
        {{\small 40 minutes 42 seconds}}    
        \label{}
    \end{subfigure}
    \vskip\baselineskip
    \begin{subfigure}[b]{0.475\textwidth}   
        \includegraphics[width=\textwidth]{TiO__43_51_004_01_05_18_.png}
        \caption[]%
        {{\small 43 minutes 51 seconds}}    
        \label{}
    \end{subfigure}
    \caption[ A selection of stills ]
    {\small A selection of stills from video footage of TiO\textsubscript{2} in a solution of LiOH. } 
    \label{fig:bubbles}
\end{figure}

我正在使用一组 IoP 包来提交报告,因此我的序言相当复杂,但这里是我的包。

\documentclass[12pt,a4paper,final]{iopart}
\newcommand{\gguide}{{\it Preparing graphics for IOP journals}}
%Uncomment next line if AMS fonts required
\usepackage{iopams}  
\usepackage[breaklinks=true,colorlinks=true,linkcolor=blue,urlcolor=blue,citecolor=blue]{hyperref}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{tabularx}
\usepackage{xfrac}

我的图形顶部和底部均已编号,有两个不同的数字。

答案1

令人尴尬的是,我刚刚意识到代码中有一个空图形,没有导入任何图像。我没有意识到 Latex 在这种情况下会添加一个空图形。

无论如何,感谢大家的帮助。

相关内容