我已经构造了这个三角形,但我需要在标记为 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
图书馆angles
和quotes
:
\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}