节点距离=6mm 和 25mm?

节点距离=6mm 和 25mm?

在 Brent Longboroughs TikZ 的基础上易于维护的流程图,有人可能会读到:

node distance=6mm and 25mm

什么是and 25mm这里的意思是什么?

答案1

定位一个节点(例如below right另一个节点)时,第一个值是垂直移位,第二个值是水平移位。请参阅17.5.3 高级安置选项在手册中。

一个小例子:

\documentclass[tikz,border=2mm]{standalone}
\usetikzlibrary{positioning}

\begin{document}

\begin{tikzpicture}
\draw (0,0) grid (3,3);
\node (a) at (0,0) {A};

\node [above right=of a] {B};

\begin{scope}[node distance=2cm and 1cm] %default is 1cm and 1cm
\node [above right=of a] {C};
\end{scope}
\end{tikzpicture}
\end{document}

在此处输入图片描述

答案2

它们是行和列的空间。看看当我们将其更改为时会发生什么node distance=2mm and 20mm

在此处输入图片描述

相关内容