TikZ - 寻找一些建议来建立逐步计算

TikZ - 寻找一些建议来建立逐步计算

我想要获得以下图表,其中所有符号等号必须对齐,并且矩形以符号等号为中心。

我怎样才能实现这个目标?

在此处输入图片描述

答案1

绘制为图像?看看下面的 MWE 是否产生了你想要的结果:

\documentclass[tikz, margin=1pt]{standalone}
\usetikzlibrary{arrows.meta,
                positioning}

\begin{document}
    \begin{tikzpicture}[
    node distance = 3mm and 0mm,
                > = {Straight Barb[scale=0.5]},
every node/.style = {inner xsep=1pt}
                        ]
\node (a0)                  {=};
\node (aL)  [left =of a0]   {$2x+3$};
\node (aR)  [right=of a0]   {$5x-4$};
%
\node (b0)  [draw, minimum width=4em,
             below=of a0]   {$-3$};
%
\node (c0)  [below=of b0]   {$=$};             
\node (cL)  [left =of c0]   {$2x$};
\node (cR)  [right=of c0]   {$5x-7$};
%
\scoped[transform canvas={xshift= 1em}]
{
\draw       (aL) -- (aL |- b0.north);
\draw[->]   (aL |- b0.south) -- (aL |- cL.north);
}
\scoped[transform canvas={xshift=-1em}]
{
\draw       (aR) -- (aR |- b0.north);
\draw[->]   (aR |- b0.south) -- (aR |- cR.north);
}
    \end{tikzpicture}
\end{document}

注意,如果需要,您可以在方程环境中插入图像。

在此处输入图片描述

相关内容