-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpropagator-fluctuations.tex
44 lines (33 loc) · 1.55 KB
/
propagator-fluctuations.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
\documentclass[tikz]{standalone}
\usetikzlibrary{patterns}
\tikzset{
cross/.style={
path picture={
\draw[black] (path picture bounding box.south east) -- (path picture bounding box.north west) (path picture bounding box.south west) -- (path picture bounding box.north east);
}
}
}
\def\unit{0.7}
\begin{document}
% Diagram 1
\begin{tikzpicture}
\draw[thick] (0,0) circle (\unit);
\draw (-2*\unit,0) -- (-\unit,0) (\unit,0) -- (2*\unit,0);
\draw[fill=white,cross] (0,\unit) circle (0.15*\unit) node[below=2*\unit] {$\partial_k R_k$};
\draw[fill=white,postaction={pattern=north east lines}] (\unit,0) circle (0.2*\unit) node[above right] {$\Gamma_k^{(3)}$} (-\unit,0) circle (0.2*\unit) node[above left] {$\Gamma_k^{(3)}$};
\end{tikzpicture}
% Diagram 2
\begin{tikzpicture}
\draw[thick] (0,0) circle (\unit);
\draw (-2*\unit,0) -- (-\unit,0) (\unit,0) -- (2*\unit,0);
\draw[fill=white,cross] (0,-\unit) circle (0.15*\unit) node[above=2*\unit] {$\partial_k R_k$};
\draw[fill=white,postaction={pattern=north east lines}] (\unit,0) circle (0.2*\unit) node[above right] {$\Gamma_k^{(3)}$} (-\unit,0) circle (0.2*\unit) node[above left] {$\Gamma_k^{(3)}$};
\end{tikzpicture}
% Diagram 3
\begin{tikzpicture}
\draw[thick] (0,0) circle (\unit);
\draw (-2*\unit,-\unit) -- (2*\unit,-\unit);
\draw[fill=white,cross] (0,\unit) circle (0.15*\unit) node[below=2*\unit] {$\partial_k R_k$};
\draw[fill=white,postaction={pattern=north east lines}] (0,-\unit) circle (0.2*\unit) node[above=3*\unit] {$\Gamma_k^{(4)}$};
\end{tikzpicture}
\end{document}