我知道这是一个反复出现的主题,但任何帮助都是非常受欢迎的...我无法摆脱空白。我认为它是由 [!ht] 中的“!”命令生成的。但是,不使用它是不可能的,因为论文有很多浮点数,删除“!”命令会让一切都变得非常混乱。
任何替代方案只会让事情变得更糟,例如 FloatBarrier 会带来更多的空白。
以下是代码:
bla bla bla
\begin{figure}[!h]
\captionsetup{width=0.45\textwidth}
\begin{minipage}{0.485\textwidth}
\includegraphics[width=\linewidth]{path/235potm800pcm.pdf}
\caption{Transitorio de potencia ante un SCRAM parcial, que inyecta -800 pcm en el sistema.}
\label{24pcmU233_1}
\end{minipage}
%\hspace{\fill}
\begin{minipage}{0.485\textwidth}
\includegraphics[width=\linewidth]{path/235ro10pcm.pdf}
\caption{Transitorio de reactividad para un SCRAM parcial, que inyecta -800 pcm en el sistema. La reactividad estacionaria se corresponde con $\rho_{drift}$.}
\end{minipage}
\vspace*{1cm} % (or whatever vertical separation you prefer)
\begin{minipage}{0.485\textwidth}
\includegraphics[width=\linewidth]{path/235Cm800pcm.pdf}
\caption{Cambio relativo en la población de precursores para un SCRAM parcial.}
\end{minipage}
%\hspace{\fill}
\begin{minipage}{0.485\textwidth}
\includegraphics[width=\linewidth]{path/235TNm800pcm.pdf}
\caption{Transitorio de temperatura para un SCRAM parcial.}
\label{24pcmU233_2}
\end{minipage}
\centerin
\end{figure
bla bla
答案1
您的小页面之间没有段落分隔(空白行),因此它们都是在同一条线上段落内,并且仅在段落随后以通常方式分成几行时出现在不同的行上。如果您\vspace
像这里一样使用中间段落,则将添加空格后该段落被分成几行,并添加在添加了 vspace 的行之后。
因此它出现在最后,而不是在您的小页面之间。
因此,在源代码中始终留一个空行\vspace
。
另外,不要使用[!h]
它通常会生成一个警告,并且 latex 会将其更改为[!ht]
给自己一个设置浮动的机会,但它仍然非常严格,并且可能会导致糟糕的分页符,因为它不允许将图形放在浮动页面上。使用[htp]