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
\usetikzlibrary{arrows,positioning}
4
\tikzset{
5
%Define standard arrow tip
6
>=stealth',
7
% Define arrow style
8
pil/.style={->,thick}
9
}
10
11
\begin{document}
12
\begin{tikzpicture}
13
\node (a)[vertex] at (1,1) {};
14
\node (b)[vertex] at (2,5) {};
15
\node (c)[vertex] at (3,3) {};
16
\node (d)[vertex] at (5,4) {};
17
\node (e)[vertex] at (3,6) {};
18
\node (f)[vertex] at (5,6) {};
19
\node (g)[vertex] at (7,6) {};
20
\node (h)[vertex] at (7,4) {};
21
\node (i)[vertex] at (6,2) {};
22
\node (j)[vertex] at (8,7) {};
23
\node (k)[vertex] at (9,5) {};
24
\node (l)[vertex] at (13,6) {};
25
\node (m)[vertex] at (11,7) {};
26
\node (n)[vertex] at (15,7) {};
27
\node (o)[vertex] at (16,4) {};
28
\node (p)[vertex] at (10,2) {};
29
\node (q)[vertex] at (13,1) {};
30
\node (r)[vertex] at (16,1) {};
31
\node (s)[vertex] at (17,4) {};
32
\node (t)[vertex] at (19,6) {};
33
\node (u)[vertex] at (18,3) {};
34
\node (v)[vertex] at (20,2) {};
35
\node (w)[vertex,purple] at (15,4) {};
36
37
\foreach \from/\to in {a/c,c/b,c/d,d/f,f/g,g/h,h/d,d/g,h/f,i/k,k/j,k/l,l/m,m/n,n/o,o/t,t/v,v/u,s/r,o/q,q/p,u/t}
38
\draw[line width=2pt] (\from) -- (\to);
39
\end{tikzpicture}
40
\end{document}
41
42