2021-05-10 17:41:58 +02:00
|
|
|
\begin{tikzpicture}
|
|
|
|
\tikzset{every node/.style={shape=circle,draw,inner sep=2pt}}
|
|
|
|
|
|
|
|
\node (a) at (-0.5, 0) {$a$};
|
2021-05-10 22:12:44 +02:00
|
|
|
\node (b) at (-1.0, 1) {$b$};
|
|
|
|
\node (e) at (0.0, 1) {$e$};
|
|
|
|
\node (c) at (-1.0, 2) {$c$};
|
|
|
|
\node (d) at (0.0, 2) {$d$};
|
2021-05-10 17:41:58 +02:00
|
|
|
|
2021-05-10 22:12:44 +02:00
|
|
|
\draw (e) -- (d);
|
2021-05-10 17:41:58 +02:00
|
|
|
\draw (a) -- (e);
|
|
|
|
\draw (b) -- (c);
|
|
|
|
\draw (a) -- (b);
|
|
|
|
\draw (e) -- (c);
|
|
|
|
|
|
|
|
\end{tikzpicture}
|