pgf tikz for LaTeX如何在节点

时间:2018-12-04 06:05:19

标签: latex tikz pgf

我有以下矩形:

\begin{tikzpicture}
\draw[thin] (0,0) -- (7,0) -- (7,5) -- (7,5) -- (0,5) -- (0,0);
\end{tikzpicture}

,我想使用node为矩形的宽度和高度添加文本标签。但是不知道如何为文本标签指定x,y坐标。

我可以在节点上使用x,y坐标吗?

1 个答案:

答案 0 :(得分:2)

您可以使用at (x, y)语法做到这一点:

\begin{tikzpicture}
  \draw[thin] (0,0) -- (7,0) -- (7,5) -- (7,5) -- (0,5) -- (0,0);
  \node at (3.5, -0.5) {7cm};
  \node at (-0.5, 2.5) {5cm};
\end{tikzpicture}

enter image description here