我目前正在撰写论文,并试图将几幅图像分成不同的部分。
由于某种原因,图像没有出现在正确的部分下,而是只是一个接一个地放置在页面上。
我不确定如何重现正确的 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}