我正在使用positioning
TikZ 中的库来放置节点。是否可以将某种乘数应用于放置,例如类似的东西(above=of C)*2
?
节点 D 中出现错误的最小示例(我尝试了一些方法,但没有成功):
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}\begin{tikzpicture}[node distance=1cm,
entity/.style={
draw, rectangle,
minimum size=1cm, text height=1.5ex, text depth=0.25ex
}
]
\node (C) {};
\node (A) [entity, above left=of C] {A};
\node (B) [entity, above right=of C] {B};
\node (D) [entity, ($(above=of C) * 2$)] {D};
\end{tikzpicture}\end{document}
注意:通常我用坐标指定节点的位置,但对使用定位库感到好奇。