
He estado intentando poner títulos a las figuras en mi artículo, como 'Figura 1', 'Figura 2', etc. En lugar de eso, se antepone algo como 'Figura 1.1' al título. ¿Alguien podría explicarlo?
Actualización: aquí hay un ejemplo:
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}
Lo que obtengo es: 'Figura 2.3. Figura 3...'
Respuesta1
Permítanme explicar mi comentario anterior:
\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}