分节符后立即对齐环境

分节符后立即对齐环境

当我在新节后立即使用对齐环境时,节和公式之间的换行符明显增加,对我来说太大了。有没有办法让这个换行符的大小与文本紧跟在分节符之后的大小相同?

例如:

\documentclass[a4paper]{article}
\usepackage{amsmath}

\begin{document}

\section{F at the critical point}
    \label{sec:1fi}

    \begin{align*}
        F(a)&=\frac{1}{2}
    \end{align*}

    The second derivative test has been to chosen in order to confirm the nature of the critical point:

    \begin{align*}
        F''(a)&=8+\frac{9}{2a^4}+\frac{5}{4a^6}
    \end{align*}

\end{document}

此外,与第一个对齐和文本之间的空间相比,文本和第二个对齐之间的空间比我想要的要大。

答案1

事实证明,额外的空间是由换行符引起的 - 注释掉这些行可以解决这个问题(对齐环境周围的间距)。\vspace*{-\baselineskip}当环境位于节标题之后时,就足够了。

相关内容