こんにちは。三角形の作図やっていきましょう。

以下が上のソースコード
TikZ
\usepackage{tikz}
\usetikzlibrary{calc, angles, quotes}
\begin{tikzpicture}[scale=1]
\draw [thick](0,0) node[below left]{B} coordinate(B);
\draw [thick](6cm,0) node[below right]{C} coordinate(C);
\coordinate(P) at (5,0);
\coordinate(A) at ($(B)!8cm!45:(P)$);
\draw [thick](A) node[above]{A};
\draw[thick](A)--(B)--(C)--cycle;
\draw pic[draw, angle radius=15pt, "$45^{\circ}$" shift={(5mm,2mm)}] {angle=C--B--A};
\coordinate (V) at ($(B)!.5!(A)$) node at (V) [above left] {8cm};
\coordinate (W) at ($(C)!.5!(B)$) node at (W) [below] {6cm};
\end{tikzpicture}
数樂管理人のブログ 
