-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgauge-link-forward.tex
67 lines (55 loc) · 1.51 KB
/
gauge-link-forward.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
% Copyright © 2017-2018 Martin Ueding <martin-ueding.de>
% Licensed under CC-BY 4.0
\documentclass{scrartcl}
\pagestyle{empty}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{calc}
\usetikzlibrary{positioning}
\usetikzlibrary{decorations}
\usetikzlibrary{decorations.markings}
\begin{document}
\tikzset{
gauge link/.style={
%thick,
},
link arrow/.style={
decoration={
markings,
mark=at position 0.0 with {\arrow{Straight Barb}},
},
postaction={decorate},
},
link arrow midway/.style={
decoration={
markings,
mark=at position 0.5 with {\arrow{Straight Barb}},
},
postaction={decorate},
},
gauge link arrow/.style={
gauge link,
link arrow midway,
},
lattice point/.style={
draw,
fill,
circle,
minimum size=1.7mm,
inner sep=0,
},
}
\begin{tikzpicture}
\node[lattice point] (n) at (0, 0) {};
\node[below left=0.5mm of n] {$\vec n$};
\node[lattice point] (n-mu) at (30mm, 0) {};
\node[below right=0.5mm of n-mu] {$\vec n + \mu$};
\draw[gauge link] (n) -- ++(-4mm, 0);
\draw[gauge link] (n) -- ++(0, 4mm);
\draw[gauge link] (n) -- ++(0, -4mm);
\draw[gauge link] (n-mu) -- ++(4mm, 0);
\draw[gauge link] (n-mu) -- ++(0, 4mm);
\draw[gauge link] (n-mu) -- ++(0, -4mm);
\draw[gauge link arrow, thick] (n) -- (n-mu) node[below, midway] {$U_\mu(\vec n)$};
\end{tikzpicture}
\end{document}