
Tenho tentado legendar as figuras em meu artigo, como 'Figura 1', 'Figura 2', etc. Em vez disso, algo como 'Figura 1.1' é anexado à legenda. Alguém poderia explicar?
Atualização: aqui está um exemplo:
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}
O que recebo é: 'Figura 2.3. Figura 3...'
Responder1
Deixe-me explicar meu comentário acima:
\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}