
나는 내 논문의 그림에 '그림 1', '그림 2' 등과 같은 캡션을 붙이려고 노력해 왔습니다. 대신 '그림 1.1'과 같은 캡션이 캡션 앞에 추가됩니다. 누구든지 설명해 주시겠습니까?
Upd: 여기에 예가 있습니다:
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}