Tikz图片:xshift,yshift

Tikz图片:xshift,yshift

假设 A,B 是 tikzpicture 环境中的节点。有以下等价的:

      right = of A
      left  = of A
      above = of A
      below = of A 

为了不做任何事,只使用 xshift,yshit 来描述 B 相对于 A 的位置?

例如

     \node[xshift=1cm,yshift=1cm,  ????? = of A] (B) {B};

答案1

如果您想避免使用above right of,您可以使用

\node[xshift=1cm, yshift=1cm, at=(A)] (B) {B};

请注意,您还可以使用以下方式指定距离above right of

\node[above right=1cm and 1cm of A] (B) {B};

相关内容