包含 tikz 图片的方程式周围的垂直间距

包含 tikz 图片的方程式周围的垂直间距

我在方程式中使用了很多 tikz 图,但我注意到它们周围的间距很奇怪。这可能不是 tikz 的问题,但使用 tikz 图会使其特别引人注目。

我的问题是“我怎样才能改变这一点”和“应该我要改变这个吗?” 对我来说间距看起来很奇怪但也许是有我不知道的充分理由。

考虑以下 MWE:

\documentclass{article}
\usepackage{tikz}
\begin{document}

A diagram:
\begin{equation}
    \begin{tikzpicture}[baseline=(current  bounding  box.center)]
        \node[draw]{foo};
    \end{tikzpicture}
\end{equation}

Another diagram, in another equation:
\begin{equation}
    \begin{tikzpicture}[baseline=(current  bounding  box.center)]
        \node[draw]{foo};
    \end{tikzpicture}
\end{equation}

Yet another diagram, in yet another equation:
\begin{equation}
    \begin{tikzpicture}[baseline=(current  bounding  box.center)]
        \node[draw]{foo};
    \end{tikzpicture}
\end{equation}

\end{document}

以下是其输出:

在此处输入图片描述

公式 2 后面的空间明显比公式 1 后面的空间大。我认为这是因为文本“A diagram:”比文本“Another diagram, in another equation:”短,因为如果我将它们设置为相同,那么间距就会相同。所以我认为这种行为是设计使然。

但是,当方程式包含这样的图表时,它看起来有点奇怪。所以我想知道是否有合理的方法来改变这种行为,或者我是否应该忍受并不管它。

相关内容