如何按部分分割影像?

如何按部分分割影像?

我目前正在寫論文,我正在嘗試將多個圖像拆分到不同的部分下。

由於某種原因,圖像沒有出現在正確的部分下,而是一個接一個地放置在頁面上。

我不確定如何重現正確的 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}

相關內容