如何标记正方形的边和对角线

如何标记正方形的边和对角线

我画了一个正方形,中间有一条对角线。我想标记底边、右边和对角线以显示毕达哥拉斯恒等式。因此边应该分别为 1、1 和平方根。我该如何在代码中添加这个?

\begin{tikzpicture}
    \draw (0,0) -- (4,0) -- (4,4) -- (0,4) -- (0,0) ;
    \draw (0,0) -- (4,4);
\end{tikzpicture}

答案1

在此处输入图片描述

\begin{tikzpicture}
    \draw (0,0) -- node[below, pos=.5]{1}(4,0) -- node[right, pos=.5]{1}(4,4) -- (0,4) -- (0,0) ;
    \draw (0,0) -- node[left, pos=.5, sloped, above]{$\sqrt{2}$}(4,4);
\end{tikzpicture}

相关内容