2

阅读如何使用 TikZ 连接节点?,我正在考虑如何将下面的简单示例转换为使用 TiKz 链。

当前 MWE:

\documentclass[tikz]{standalone}
\usetikzlibrary{arrows,positioning,calc}

\tikzset{
    block/.style={draw,text width=2em,minimum height=1em,align=center},
    arrow/.style={->}
}
\newcommand\connect[2]{\path[draw,arrow] (#1) |- ($(#1)!1/2!(#2)$) -| (#2)}

\begin{document}
\begin{tikzpicture}[>=stealth']
    \node[block] (N1) {N1};
    \node[block,below=1cm of N1,xshift=-1cm] (N2) {N2};
    \connect{N1}{N2};
\end{tikzpicture}
\end{document}

电流输出:

在此处输入代码

我希望使用链库来做到这一点,但仍然找不到正确的方法。节点位置不应改变,连接线样式应相同。

4

1 回答 1

0

这个例子中,它使用链进行直线节点连接,但使用 \draw 命令绘制非直线路径。

所以我认为将链用于当前任务是不合适的。或者你可以创建两个不可见的坐标然后用链连接它(太复杂了,对吧?)。

\documentclass[tikz]{standalone}
\usetikzlibrary{arrows,chains,positioning,scopes,quotes}

\tikzset{
    block/.style={draw,text width=2em,minimum height=1em,align=center},
    arrow/.style={->}
}

\begin{document}
    \begin{tikzpicture}[>=stealth']
    {[start chain]
        \node[block,on chain] (N1) {N1};
        \node[block,on chain,join=by {arrow},below=1cm of N1,xshift=-1cm] (N2) {N2};
    }
    \end{tikzpicture}
\end{document}

在此处输入图像描述

于 2015-03-15T20:13:22.840 回答