在两个数字下方插入

在两个数字下方插入

我想插入两个图,一个在另一个下面,然后在图 2 之后继续输入文本。但是文本插入到图 1 之后。有人能告诉我我做错了什么吗?以下是我使用的命令(文档类为report):

\begin{figure}[h]
   \centering
    \includegraphics[scale=0.5]{figure1.png}
     \caption{this is figure 1}\label{one}
\end{figure}
\begin{figure}[h]
   \centering
    \includegraphics[scale=0.5]{figure2.png}
     \caption{this is figure 2}\label{two}
\end{figure}

答案1

为了将两个图形放在一起,请使用单一figure环境。如果您想自行决定图像应出现的位置,请避免使用环境figure

\documentclass{report}
\usepackage{graphicx}
\usepackage{blindtext}
\begin{document}
\begin{figure}[h]
\centering
\includegraphics[width=.5\textwidth]{example-image-a}
\caption{this is figure 1}\label{one}
\bigbreak
\includegraphics[width=.5\textwidth]{example-image-b}
\caption{this is figure 2}\label{two}
\end{figure}
\blindtext
\end{document}

相关内容