Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132948 views
License: OTHER
1
\documentclass[varwidth=true, border=2pt]{standalone}
2
\usepackage{tikz}
3
4
\begin{document}
5
\tikzstyle{vertex}=[draw,fill=black,circle,minimum size=3pt,inner sep=0pt]
6
\begin{tikzpicture}
7
\node[vertex] (N-1) at (0,0) {};
8
\node[vertex] (N-2) at (0,1) {};
9
\node[vertex] (N-3) at (1,0) {};
10
\node[vertex] (N-4) at (1,1) {};
11
12
\draw (N-1) -- (N-2);
13
\draw (N-2) -- (N-4);
14
\draw (N-4) -- (N-3);
15
\end{tikzpicture}
16
\end{document}
17
18