2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/presentations/Diskrete-Mathematik/LaTeX/aufgabe-1/graph-6.tex

16 lines
455 B
TeX
Raw Normal View History

2013-04-26 00:44:33 +02:00
\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage{tikz}
\begin{document}
\tikzstyle{vertex}=[draw,fill=black,circle,minimum size=3pt,inner sep=0pt]
\begin{tikzpicture}
\node[vertex] (N-1) at (0,0) {};
\node[vertex] (N-2) at (0,1) {};
\node[vertex] (N-3) at (1,0) {};
\node[vertex] (N-4) at (1,1) {};
\draw (N-2) -- (N-4);
\draw (N-1) -- (N-2);
\end{tikzpicture}
\end{document}