diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-22-7-1.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-22-7-1.tex | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-22-7-1.tex b/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-22-7-1.tex new file mode 100644 index 00000000000..95d407fc1c0 --- /dev/null +++ b/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-22-7-1.tex @@ -0,0 +1,22 @@ +\input{preamble-standalone.ltx} +\begin{document} + +% Ex. No. 166 (Section 22.7.1 : VĂ©rication de la mesure d'un angle) + +\begin{tikzpicture}[scale=.75] + \tkzDefPoint(-1,1){A} + \tkzDefPoint(5,2){B} + \tkzDefEquilateral(A,B) + \tkzGetPoint{C} + \tkzDrawPolygon(A,B,C) + \tkzFindAngle(B,A,C) + \tkzGetAngle{angleBAC} + \edef\angleBAC{\fpeval{round(\angleBAC)}} + \tkzDrawPoints(A,B,C) + \tkzLabelPoints(A,B) + \tkzLabelPoint[right](C){$C$} + \tkzLabelAngle(B,A,C){\angleBAC$^\circ$} + \tkzMarkAngle[size=1.5cm](B,A,C) +\end{tikzpicture} + +\end{document} |