저는 현재 논문을 작성 중이며 여러 이미지를 서로 다른 섹션으로 분할하려고 합니다.
어떤 이유로 이미지가 올바른 섹션 아래에 표시되지 않고 대신 페이지에 하나씩 배치됩니다.
내 이미지 사용에 의존하기 때문에 적절한 MWE를 재현하는 방법을 확신하지 못했습니다. 내 이미지가 일반적으로 위치하는 자리 표시자를 사용했습니다.
제가 예시로 정리한 아래 MWE를 참조하세요. (괜찮기를 바랍니다.)
\documentclass[10pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {YourGraphicsPath/} }
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\section{Section 1}
\begin{figure}[h]
\includegraphics{Your Image}
\centering
\caption{Test}
\label{fig:Test}
\end{figure}
\section{Section 2}
\begin{figure}[h]
\includegraphics{Your Image 2}
\centering
\caption{Test}
\label{fig:Test}
\end{figure}
\begin{figure}[h]
\includegraphics{Your Image 3}
\centering
\caption{Test}
\label{fig:Test}
\end{figure}
\section{Section 3}
\begin{figure}[h]
\includegraphics{Your Image 4}
\centering
\caption{Test}
\label{fig:Test}
\end{figure}
\end{document}