追加時に不正な番号が割り当てられた図\caption

追加時に不正な番号が割り当てられた図\caption

論文の図に「図 1」、「図 2」などのキャプションを付けようとしています。代わりに、「図 1.1」のようなものがキャプションの先頭に追加されます。どなたか説明していただけますか?

更新: ここに例があります:

begin{figure}[h]
\includegraphics[width=10cm, height=6cm]{wang_fa}
\centering
\caption {Figure 6. Different RF pulses’ effect on tip angle (\emph {flip angle, FA}) calibration. [i8]}
\end{figure}

表示される内容は次のとおりです: 「図 2.3。図 3...」

答え1

上記のコメントを詳しく説明します。

\documentclass{article}
\usepackage{graphicx}
\usepackage[font=small,
            labelfont=bf]{caption}

\begin{document}
Figure produced with your code fragment;
\begin{figure}[h]
\includegraphics[width=6cm, height=5.4cm]{example-image-duck}%{wang_fa}{wang_fa}
\centering
\caption {Figure 6. Different RF pulses’ effect on tip angle (\emph {flip angle, FA}) calibration. [i8]}
\end{figure}

Figure produced with proposed correction of your code fragment;
\begin{figure}[ht]
\centering
\includegraphics[width=6cm, height=5.4cm]{example-image-duck}%{wang_fa}
\caption {Different RF pulses’ effect on tip angle (\emph {flip angle, FA}) calibration. [i8]}
\end{figure}
\end{document}

ここに画像の説明を入力してください

関連情報