在 LaTeX 中,我不希望图像出现在文本之间

在 LaTeX 中,我不希望图像出现在文本之间

我希望新段落出现在两张图片下方。也就是说,第二页将包含第二张图片,后面是所有文本。但是,我的代码似乎会以高效利用页面的方式移动文本。

下面是我的代码片段:

\begin{figure}[ht]
    \centering
    \includegraphics{"Q1 (2) graph1".png}
    \caption{Dynamic response to a reduction in the value of filled jobs}
\end{figure}


\begin{figure}[ht]
    \centering
    \includegraphics{"Q1 (2) graph2".png}
    \caption{Dynamic response to a reduction in the value of filled jobs}
\end{figure}

(3) At $t = 1$, a recession caused the matching efficiency parameter $A$ to decrease to $A = 0.3$ for $15$ months...

在此处输入图片描述

答案1

我希望我的新段落出现在这两张图片下方。

如果你想确保两者之间不会放置任何文本材料figure环境之间不会放置任何文本材料,只需创建一个单身的 figure包含两个\includegraphics和两个\caption语句的环境。

\begin{figure}[ht]
\centering
\includegraphics{"Q1 (2) graph1".png}
\caption{Dynamic response to a reduction in the value of filled jobs}

\vspace{2\baselineskip} % choose a suitable amount of vertical whitespace
\includegraphics{"Q1 (2) graph2".png}
\caption{Dynamic response to a reduction in the value of filled jobs, cont'd}
\end{figure}

相关内容