blob: 38871e6f02062273a0928c0bae2ff1a9bce821e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
\input{preamble-standalone.ltx}
\begin{document}
% Ex. No. 75 (Section 14.1.2 : Example with \tkzcname{tkzDrawLines})
\begin{tikzpicture}
\tkzDefPoint(0,0){A}
\tkzDefPoint(2,0){B}
\tkzDefPoint(1,2){C}
\tkzDefPoint(3,2){D}
\tkzDrawLines(A,B C,D A,C B,D)
\tkzLabelPoints(A,B,C,D)
\end{tikzpicture}
\end{document}
|