MA0301/exam_template_graphics/graphics/hasse.tex

16 lines
423 B
TeX
Raw Normal View History

2021-05-10 17:41:58 +02:00
\begin{tikzpicture}
2021-05-17 19:12:57 +02:00
\tikzset{every node/.style={shape=circle,draw,fill=white,inner sep=2pt}}
2021-05-10 17:41:58 +02:00
2021-05-17 18:39:28 +02:00
\node (a) at (-0.5, 0.0) {$a$};
2021-05-17 19:12:57 +02:00
\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$};
2021-05-10 17:41:58 +02:00
2021-05-10 22:12:44 +02:00
\draw (e) -- (d);
2021-05-17 19:12:57 +02:00
\draw (e) -- (c);
2021-05-10 17:41:58 +02:00
\draw (a) -- (b);
2021-05-17 19:12:57 +02:00
\draw (a) -- (e);
\draw (b) -- (c);
2021-05-10 17:41:58 +02:00
\end{tikzpicture}