当我在乳胶文档中无法精确放置图形的位置(例如,在 pdf 文档的页面底部)插入图形时,乳胶仍然会在图形周围的两个段落之间插入空白。这是一个 MWE:
\newline \lipsum[100]
\begin{figure}
\centering
\includegraphics{path/to/fig}
\caption{This is a figure.}\label{fig:sample}
\end{figure}
\lipsum[100]
输出结果如下所示(该图放在以下页面):
插入\raggedbottom
(参见例如此链接) 已在序言中给出了较小的段落间距,见下文(再次参见下页的图表):
但是,我无法完全删除空白。该如何解决?
答案1
发布的片段不会产生所示的图像(\newline
会产生错误,并且图后只有一个段落)
如果我将其完成到如下文档中
\documentclass{article}
\usepackage{graphics,lipsum,parskip}
\begin{document}
x
\newline \lipsum[100]
\begin{figure}[p]
\centering
\includegraphics{example-image}
\caption{This is a figure.}\label{fig:sample}
\end{figure}
\lipsum[98-100]
\end{document}
然后间距就符合预期了: