MA0301/exam_template_graphics/graphics/hasse.tex

16 lines
412 B
TeX
Raw Normal View History

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