
Ich habe versucht, die Abbildungen in meinem Dokument mit Überschriften zu versehen, etwa „Abbildung 1“, „Abbildung 2“ usw. Stattdessen steht vor der Überschrift etwas wie „Abbildung 1.1“. Kann das bitte jemand erklären?
Update: hier ist ein Beispiel:
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}
Was ich bekomme ist: „Abbildung 2.3. Abbildung 3 …“
Antwort1
Lassen Sie mich meinen obigen Kommentar näher ausführen:
\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}