148
|
1 \begin{frame}{Workflow Between Company Divisions} |
210
|
2 \dots to enterprise-wide development\dots: |
148
|
3 \begin{center} |
|
4 \begin{tikzpicture}[node distance=8mm] |
|
5 \tikzstyle{repository}+=[minimum height=18mm, text width=12mm] |
|
6 \tikzstyle{every path}=[<->, short] |
|
7 |
|
8 \node[repository, label=below:Poland] (a) at (0, 0) {}; |
|
9 \node[repository, label=below:Switzerland] (b) at (3, 2) {}; |
|
10 \node[repository, label=below:India] (c) at (6, 0) {}; |
|
11 |
|
12 \tikzstyle{repository}+=[minimum height=8mm, text width=5mm] |
|
13 \node[repository, left=of a] (a1) {}; |
|
14 \node[repository, above left=of a] (a2) {}; |
|
15 \node[repository, below left=of a] (a3) {}; |
|
16 |
|
17 \node[repository, above left=of b] (b1) {}; |
|
18 \node[repository, above=of b] (b2) {}; |
|
19 \node[repository, above right=of b] (b3) {}; |
|
20 |
|
21 \node[repository, above right=of c] (c1) {}; |
|
22 \node[repository, right=of c] (c2) {}; |
|
23 \node[repository, below right=of c] (c3) {}; |
|
24 |
|
25 \draw[short, <->] (a) -- (b); |
|
26 \draw[short, <->] (b) -- (c); |
|
27 \draw[short, <->] (c) -- (a); |
|
28 |
|
29 \foreach \x in {a, b, c} { |
|
30 \foreach \y in {1, 2, 3} { |
|
31 \draw[short, <->] (\x\y) -- (\x); |
|
32 } |
|
33 } |
|
34 \end{tikzpicture} |
|
35 \end{center} |
|
36 \end{frame} |