TikZ:带乘数的定位库

TikZ:带乘数的定位库

我正在使用positioningTikZ 中的库来放置节点。是否可以将某种乘数应用于放置,例如类似的东西(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}

注意:通常我用坐标指定节点的位置,但对使用定位库感到好奇。

相关内容