現在、論文を執筆中で、いくつかの画像を異なるセクションに分割しようとしています。
何らかの理由で、画像が正しいセクションの下に表示されず、ページ上に次々に配置されます。
私の画像を使用する必要があるため、適切な 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}