我正在写一篇短文,看起来之内正确填充了部分内容,并且新部分内容出现直接在文本之后已正确填充。但是,如果在图形之后直接出现新的部分,则填充会添加,从而导致较大的空间。
是否可以覆盖此内容?例如,如果两种机制尝试在同一个位置添加填充,则仅应计算较大的一个。
谢谢你!
下面是一个最小的工作示例:
\documentclass{article}
\begin{document}
\begin{figure}[ht]
\centering
This is a figure which is well-padded, before text
\end{figure}
Here's some filler text
\newpage
This is some filler text
\section{Here's a section which is well-padded, after text}
More filler text
\newpage
\begin{figure}[ht]
\centering
This is a figure which is over-padded, before a section
\end{figure}
\section{This section is over-padded}
Filler text.
\end{document}