如何在定义之间添加垂直间距

如何在定义之间添加垂直间距

我正在尝试在定义、定理等之间添加垂直空间。例如,如果设置如下内容:

\begin{definition}

blah blah blah

\end{definition}

%%%should be space here but there's not

\begin{theorem}

blah blah blah

\end{theorem}

在我的定义之后和新定理之前几乎没有垂直空间。我该如何解决这个问题?

答案1

您是否正确定义了定理和定义?当我使用以下代码时,行与行之间有空格:

\documentclass{article}
\usepackage{amsmath}
\newtheorem{theorem}{Theory of Blahblah}
\newtheorem{definition}{Definition of Blah}
\begin{document}
    \begin{definition}
        blah blah blah
    \end{definition}
%%%should be space here but there's not
    \begin{theorem}
        blah blah blah
    \end{theorem}
\end{document}

如果这个空间对您来说不够,有几种方法可以“强力”增加行间垂直空间。在文本行间添加 \smallskip 可能就是您想要的。

如果每次定理或定义之后都需要更多空间,可以尝试重新定义环境。不过,我这次将忽略这一点。在 amsmath 等严格环境中胡闹可能会让一些观众不满意。

相关内容