阅读如何使用 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}
电流输出:
我希望使用链库来做到这一点,但仍然找不到正确的方法。节点位置不应改变,连接线样式应相同。