geometry-8.tex 563 B

12345678910111213141516
  1. \begin{tikzpicture}
  2. \tkzSetUpPoint[shape=circle,size=10,color=black,fill=black]
  3. \tkzSetUpLine[line width=1]
  4. \tkzDefPoints{0/0/A, 4/0/B, 2/2/C, 6/2/D}
  5. \tkzMarkAngle[arc=l,size=0.8cm,color=green,fill=green!20](B,A,C)
  6. \path[draw] ++(25:.3) node[rotate=0] {$\alpha$};
  7. \node at (1,1.5) {$\beta$};
  8. \tkzDrawSegments(A,B A,C A,D B,C C,D)
  9. \tkzDrawPoints(A,B,C,D)
  10. \tkzLabelPoint[below left](A){$A$}
  11. \tkzLabelPoint[below right](B){$B$}
  12. \tkzLabelPoint[above left](C){$C$}
  13. \tkzLabelPoint[above right](D){$D$}
  14. \end{tikzpicture}