需要角码

需要角码

我已经构造了这个三角形,但我需要在标记为 c 的边和值为 5 的边之间包含一个角度值。

\begin{tikzpicture}

\draw (0,0) -- (4,0) node[midway,below] {$5$}

   -- (4,4) node[midway,right] {$ $}

   -- (0,0) node[midway,left] {$c$};  
\end{tikzpicture}

有人可以帮忙吗?

答案1

在此处输入图片描述

借助tikz图书馆anglesquotes

\documentclass[tikz, border=6mm]{standalone}
\usetikzlibrary{angles, quotes}

\begin{document}
    \begin{tikzpicture}
\draw   (0,0) coordinate (a)
              -- node[below] {$5$}
        (4,0) coordinate (b)
              -- node[midway,right] {$ $}
        (4,4) coordinate (c)
              -- node[midway,left] {$c$}
        (a) ;
\pic [draw, angle radius=9mm, "$\alpha$"] {angle = b--a--c};

    \end{tikzpicture}
\end{document}

相关内容