MA0301/exam_template_graphics/graphics/hasse.tex

16 lines
423 B
TeX

\begin{tikzpicture}
\tikzset{every node/.style={shape=circle,draw,fill=white,inner sep=2pt}}
\node (a) at (-0.5, 0.0) {$a$};
\node (b) at (-1.0, 0.9518269693579393) {$b$};
\node (e) at (0.0, 0.9518269693579393) {$e$};
\node (c) at (-1.0, 1.9036539387158786) {$c$};
\node (d) at (0.0, 1.9036539387158786) {$d$};
\draw (e) -- (d);
\draw (e) -- (c);
\draw (a) -- (b);
\draw (a) -- (e);
\draw (b) -- (c);
\end{tikzpicture}