TeX Code
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\coordinate (A) at (0, 0);
\coordinate (B) at (2, 3);
\node[draw,minimum width=10mm] at (A) {};
\node[draw,minimum width=10mm] at (B) {};
\end{tikzpicture}
\end{document}
如何使用 Tikz 绘制这样的路径?
答案1
您可以创建一个临时的相对节点并使用正交标识符
\begin{tikzpicture}
\node[draw,minimum width=10mm] (A) at (0, 0) {};
\node[draw,minimum width=10mm] (B) at (2, 3) {};
\draw[->] (A) |- ++(1,-1) |- (B);
\end{tikzpicture}
或使用paths.ortho
我们的图书馆qrrbrbirlbel但我不知道它的最新状态。我记得他在某处说过不兼容。