答案1
实现此目的的一种方法是画一条从A.east
您需要的长度向右的直线(例如到+(2em, 0)
),然后画一个角(|-
)到B.east
。
另请查看PGF/TikZ 中“right of=”和“right=of”之间的区别。
\documentclass[border=4pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\node (A) {A};
\node (B) [below=3ex of A] {B};
\draw[->] (A.east) -- +(2em, 0) |- (B.east);
\end{tikzpicture}
\end{document}