16 lines
342 B
TeX
16 lines
342 B
TeX
\begin{tikzpicture}
|
|
\tikzset{every node/.style={shape=circle,draw,inner sep=2pt}}
|
|
|
|
\node (a) at (-0.5, 0) {$a$};
|
|
\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$};
|
|
|
|
\draw (e) -- (d);
|
|
\draw (a) -- (e);
|
|
\draw (b) -- (c);
|
|
\draw (a) -- (b);
|
|
\draw (e) -- (c);
|
|
|
|
\end{tikzpicture} |