그림과 섹션 사이의 패딩을 선택적으로 변경하려면 어떻게 해야 합니까?

그림과 섹션 사이의 패딩을 선택적으로 변경하려면 어떻게 해야 합니까?

짧은 글을 쓰고 있는데, 이런 수치가 나오는 것 같습니다.이내에섹션이 올바르게 채워지고 새 섹션이 발생합니다.문자 바로 뒤에올바르게 패딩되었습니다. 그러나 그림 바로 뒤에 새 섹션이 발생하면 패딩이 추가되어 공간이 넓어지는 것처럼 보입니다.

이거 덮어쓰기 가능한가요? 예를 들어, 두 메커니즘이 동일한 위치에 패딩을 추가하려고 시도하는 경우 더 큰 메커니즘만 계산되어야 합니다.

감사합니다!

최소한의 작업 예는 다음과 같습니다.

\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}

관련 정보