mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
15 lines
563 B
TeX
15 lines
563 B
TeX
\begin{tikzpicture}
|
|
\tkzSetUpPoint[shape=circle,size=10,color=black,fill=black]
|
|
\tkzSetUpLine[line width=1]
|
|
\tkzDefPoints{0/0/A, 4/0/B, 2/2/C, 6/2/D}
|
|
|
|
\tkzMarkAngle[arc=l,size=0.8cm,color=green,fill=green!20](B,A,C)
|
|
\path[draw] ++(25:.3) node[rotate=0] {$\alpha$};
|
|
\node at (1,1.5) {$\beta$};
|
|
\tkzDrawSegments(A,B A,C A,D B,C C,D)
|
|
\tkzDrawPoints(A,B,C,D)
|
|
\tkzLabelPoint[below left](A){$A$}
|
|
\tkzLabelPoint[below right](B){$B$}
|
|
\tkzLabelPoint[above left](C){$C$}
|
|
\tkzLabelPoint[above right](D){$D$}
|
|
\end{tikzpicture}
|