diff options
Diffstat (limited to 'presentation/editconv.tex')
-rw-r--r-- | presentation/editconv.tex | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/presentation/editconv.tex b/presentation/editconv.tex new file mode 100644 index 0000000..26dbcc7 --- /dev/null +++ b/presentation/editconv.tex | |||
@@ -0,0 +1,62 @@ | |||
1 | \begin{tikzpicture}[node distance=2cm and 2cm,auto] | ||
2 | \tikzset{myptr/.style={decoration={markings,mark=at position 1 with % | ||
3 | {\arrow[scale=3,>=stealth]{>}}},postaction={decorate}}} | ||
4 | |||
5 | \coordinate[] (e1) {}; | ||
6 | |||
7 | \node[shape=rectangle, draw, left = of e1] (l1) | ||
8 | { \begin{tabular}{l l} | ||
9 | Schubert & 1797–1828 \\ | ||
10 | Shumann & 1810–1856 | ||
11 | \end{tabular} | ||
12 | }; | ||
13 | |||
14 | \node[shape=rectangle, draw, right = of e1] (r1) | ||
15 | { \begin{tabular}{l l} | ||
16 | Schubert & Austria \\ | ||
17 | Shumann & Germany | ||
18 | \end{tabular} | ||
19 | }; | ||
20 | |||
21 | \draw (l1) -- (e1) -- (r1); | ||
22 | |||
23 | \coordinate[below = of e1,label={$\iota_L \rightarrow \iota_R$}] (e2) {}; | ||
24 | |||
25 | \node[shape=rectangle, draw, left = of e2] (l2) | ||
26 | { \begin{tabular}{l l} | ||
27 | Schubert & 1797–1828 \\ | ||
28 | Shumann & 1810–1856 \\ | ||
29 | \textcolor{blue}{Monteverdi} & \textcolor{blue}{1567–1643} | ||
30 | \end{tabular} | ||
31 | }; | ||
32 | |||
33 | \node[shape=rectangle, draw, right = of e2] (r2) | ||
34 | { \begin{tabular}{l l} | ||
35 | Schubert & Austria \\ | ||
36 | Shumann & Germany \\ | ||
37 | \textcolor{red}{Monteverdi} & \textcolor{red}{\emph{null}} | ||
38 | \end{tabular} | ||
39 | }; | ||
40 | |||
41 | \draw[myptr] (l2) -- (e2) |- (r2); | ||
42 | |||
43 | \coordinate[below = of e2,label={$\delta_R \leftarrow \delta_L$}] (e3) {}; | ||
44 | |||
45 | \node[shape=rectangle, draw, left = of e3] (l3) | ||
46 | { \begin{tabular}{l l} | ||
47 | Schubert & 1797–1828 \\ | ||
48 | \textcolor{red}{Schumann} & 1810–1856 \\ | ||
49 | Monteverdi & 1567–1643 | ||
50 | \end{tabular} | ||
51 | }; | ||
52 | |||
53 | \node[shape=rectangle, draw, right = of e3] (r3) | ||
54 | { \begin{tabular}{l l} | ||
55 | Schubert & Austria \\ | ||
56 | \textcolor{blue}{Schumann} & Germany \\ | ||
57 | Monteverdi & \textcolor{blue}{Italy} | ||
58 | \end{tabular} | ||
59 | }; | ||
60 | |||
61 | \draw[myptr] (r3) -- (e3) |- (l3); | ||
62 | \end{tikzpicture} | ||