抑制空格

抑制空格

为了代码的可读性,我喜欢使用空行将文本块与某些方程式环境分开。不幸的是,这会在 .pdf 中产生不同的输出。有没有办法抑制这种行为?注意:使用 Overleaf 和 pdfLatex 作为编译器。谢谢。

\documentclass[tikz]{standalone}

\begin{document}

This is some dummy text \begin{equation}
    1 + 1 = 2
\end{equation}

And supposely this is a bigger gap:

\begin{equation}
    2+2 = 4
\end{equation}

\end{document}

产生这个:

在此处输入图片描述

答案1

第二个等式中有新行,但第一个等式没有。这会形成一个新段落,因此会添加空白。

\documentclass[tikz]{standalone}

\begin{document}

This is some dummy text 
\begin{equation}
    1 + 1 = 2
\end{equation}

And supposely this is a bigger gap:
\begin{equation}
    2+2 = 4
\end{equation}

\end{document}

相关内容