gather 不知道 abovedisplayshortskip

gather 不知道 abovedisplayshortskip

因此在下面的例子中我们可以看到 gather没有插入\abovedisplayshortskip 但可能插入\abovedisplayskip

\documentclass[twocolumn]{article}

\usepackage{amsmath}
\usepackage{lipsum}

\begin{document}

    \lipsum[1]
    \begin{equation}
        %\begin{gathered}
            123
        %\end{gathered}
    \end{equation}
    \lipsum[1]

    \newpage

    \lipsum[1]
    \begin{gather}
            567
    \end{gather}
    \lipsum[1]

\end{document}

鲍里斯的回答 提到了这一点,但没有告诉我如何避免。正确的恢复方法是什么\abovedisplayshortskipgathered内部是否equation产生正确的间距?

答案1

gather和 类似,并且始终是全宽的。这就是为什么多行显示环境永远不应该用于单行显示,而和仍然需要的align主要原因。equation\[

相关内容