相邻的数字

相邻的数字

我试图将两个图形放在一起并进行书写,但 LaTeX 会不断将下面的一个图形移动到下一页。这是我的代码:

\begin{figure}[h]

\includegraphics[width=8cm]{SIR2.pdf}
\caption{p=}
\label{SIRp2}

\end{figure}
shelo efeoeignregvrmbkr bkmtbpgk bgk bkgbg \\ \\

\begin{figure}[h]

\includegraphics[width=8cm]{SIR3.pdf}
\caption{p=}
\label{SIRp3}

\end{figure}

答案1

除非您使用的纸张尺寸非常宽(或者页边距非常窄),否则将两张 8 厘米宽的图片放在一起根本不可行。我建议您选择相对宽度,而不是为图片指定绝对宽度,例如。这样做会在图片之间0.45\textwidth留下一些空白——数量为。0.1\textwidth

下面截图中的水平线只是为了说明文本块的宽度。

在此处输入图片描述

\documentclass{article}
\usepackage[demo]{graphicx} % omit 'demo' option in real document
\begin{document}
\hrule  % just to illustrate width of text block
\begin{figure}[h]
\begin{minipage}[t]{0.45\textwidth}
\includegraphics[width=\linewidth]{SIR2.pdf}
\caption{p=} \label{SIRp2}
shelo efeoeignregvrmbkr bkmtbpgk bgk bkgbg
\end{minipage}
\hfill
\begin{minipage}[t]{0.45\textwidth}
\includegraphics[width=\linewidth]{SIR3.pdf}
\caption{p=}\label{SIRp3}
\end{minipage}
\end{figure}

\end{document} 

相关内容