File size: 2,165 Bytes
6288873
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
68
69
\documentclass[tikz]{standalone}

\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{braket}

\usepackage{tikz}
\usetikzlibrary{arrows, arrows.meta, calc, decorations, positioning}

% load TikZ grafic definitions
%\input{gfx_TikZ}

% main document
\begin{document}

	\begin{tikzpicture}[]

	\def\tensorSize{0.2}

		\begin{scope}

			% label
			\node at (-3.5,0) {\large$\rho_\text{DL}^{[x+1,y]}$};

			% network corrdinates
			\coordinate (PN) at (+0.0, +0.5);
			\coordinate (PC) at (+0.0, -0.5);
			\coordinate (T3) at (-1.5, -1.5);
			\coordinate (C4) at (-3.5, -1.5);
			\coordinate (T4) at (-2.0, -0.0);
			
			% external links
			\draw[ultra thick] ($(T3) + (+1.50, +0.00)$) to (T3) node at ($(T3) + (+2.00, +0.00)$) {$-1$};
			\draw[thick] ($(PC) + (+1.00, +0.00)$) to (PC) node at ($(PC) + (+1.50, +0.00)$) {$-2$};
			\draw[thick] ($(PN) + (+2.00, +0.00)$) to (PN) node at ($(PN) + (+2.50, +0.00)$) {$-3$};
			\draw[ultra thick] ($(T4) + (+1.25, +1.25)$) to (T4) node at ($(T4) + (+1.50, +1.50)$) {$-4$};
			\draw[thick] ($(PN) + (+0.75, +0.75)$) to (PN) node at ($(PN) + (+1.00, +1.00)$) {$-5$};
			\draw[thick] ($(PC) + (+1.75, +1.75)$) to (PC) node at ($(PC) + (+2.00, +2.00)$) {$-6$};

			% internal links
			\draw[ultra thick] (T4) to (C4) node[left = 0.25] at ($(T4)!0.5!(C4)$) {$1$};
			\draw[thick] (PC) to [out = 180, in =   0] (T4) node[below] at ($(PC)!0.7!(T4)$) {$5$};
			\draw[ultra thick] (T3) -- (C4) node [midway, below] {$2$};
			\draw[thick] (PC) to [out = 225, in = 45] (T3) node[below right] at ($(PC)!0.3!(T3)$) {$6$};
			\draw[thick] (PN) to [out = 180, in =   0] (T4) node[above] at ($(PN)!0.3!(T4)$) {$3$};
			\draw[thick] (PN) to [out = 225, in = 45] (T3) node[left] at ($(PN)!0.7!(T3)$) {$4$};
			\draw[thick] (PN) -- (PC) node [midway, right] {$7$};

			% CTMRG tensors
			\foreach \tensor in {T3, C4, T4} {
				\draw[thick,black,fill = gray] (\tensor) circle (\tensorSize);
			}

			% iPEPS tensors
			\foreach \tensor in {PN, PC} {
				\draw[thick,black,fill = blue] (\tensor) circle (\tensorSize);
			}
			
		\end{scope}

	\end{tikzpicture}

\end{document}

%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: