嗨,有人能帮我一下吗?我想画这个三角形。
如何找到三角形的中点?但是有人能指点我吗,这是我目前所得到的。
\documentclass[border=5mm,tikz]{standalone}
\usetikzlibrary{angles,arrows.meta}
\begin{document}
\begin{tikzpicture}[scale=2]
\coordinate (A) at (0,0);
\coordinate (B) at (0,1);
\coordinate (C) at (1.7,0);
\draw (A) -- (B) -- (C) -- (A);
\end{tikzpicture}
\end{document}
如果有人能帮助我我将非常感激。
答案1
TikZ 拥有强大的库可供使用。 有助于angles,quotes
绘制带有注释的角度, 可用于查找三角形的intersections
中点。 还请注意如何使用垂直坐标找到点,这意味着到 的投影。X
(a)
\coordinate (a) at ($(C)!(A)!(B)$);
A
CB
\documentclass[border=5mm,tikz]{standalone}
\usetikzlibrary{arrows.meta,calc,angles,quotes,intersections}
\begin{document}
\begin{tikzpicture}[scale=2]
\coordinate (A) at (0,0);
\coordinate (B) at (0,1);
\coordinate (C) at (1.7,0);
\coordinate (a) at ($(C)!(A)!(B)$);
\coordinate (w) at ($(A)!0.3!(C)$);
\draw (A) -- (B) -- (C) -- (A) -- (a);
\draw[shorten >=-7pt] (B)--(w) node[below right]{w};
\coordinate (X) at (intersection of A--a and B--w);
\draw pic["$\cdot$", draw, angle radius=2mm] {angle=B--a--A}
pic["$\cdot$", draw, angle radius=2mm] {angle=C--A--B}
pic["$\varepsilon$", draw, angle radius=3mm] {angle=w--X--a};
\end{tikzpicture}
\end{document}