2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00
LaTeX-examples/tikz/topology-1-d-simplizialkomplex/topology-1-d-simplizialkomplex.tex
2013-11-26 12:48:52 +01:00

15 lines
564 B
TeX

\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
\node (a)[point] at (0.4,0) {};
\node (b)[point] at (1,1) {};
\node (c)[point] at (2,1) {};
\node (d)[point] at (2.6,0) {};
\node (e)[point] at (2,-1) {};
\node (f)[point] at (1,-1) {};
\draw (a.center) -- (b.center) -- (c.center) -- (d.center) -- (e.center) -- (f.center) -- cycle;
\end{tikzpicture}
\end{document}