aboutsummaryrefslogtreecommitdiff
path: root/slides/2019-it-intro-computer-systems/img/know-it-all.tex
blob: c2e44fa215f8d3cb8a2ccf083d473f854ed00558 (plain)
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
\newcommand{\twolines}[2]{\begin{tabular}{c}#1\\#2\end{tabular}}
\scalebox{0.8}{
  \begin{tikzpicture}[
    -latex,
    entity/.style = {
      draw=lightGray,
      thick,
      ellipse,
      minimum height=1.75cm,
      top color = lightGray,
      bottom color = white,
    },
    plain/.style = {
      draw=none,
    },
    arrow/.style = {
      draw = black,
      -triangle 90,line width=1mm,
      postaction={draw, line width=0.1cm, shorten >=0.1cm, -},
    },
    cs/.style = {
      draw=lightGray,
      thick,
      cloud,
      cloud puffs = 15.7,
      cloud ignores aspect,
    },
  ]
    \node[entity] (vlsi) at (0,0) {Electronics};
    \node[entity, right=of vlsi] (hwa) {\twolines{Hardware}{architecture}};
    \node[entity, right=of hwa] (si) {\twolines{Software}{infrastructure}};
    \node[entity, right=of si] (as) {\twolines{Software}{development}};

    \path[arrow] (vlsi) -- (hwa);
    \path[arrow] (hwa) -- (si);
    \path[arrow] (si) -- (as);
    
    \coordinate(l) at ($ (vlsi) !.5! (hwa) $);
    \coordinate(m) at ($ (hwa) !.5! (si) $);
    \coordinate(r) at ($ (si) !.5! (as) $);

    \pause
    \node[plain, text=darkGreen, above=of l] {Computer parts};
    \pause
    \node[plain, text=darkBlue, below=of  m] {Hardware-software relation};
    \pause
    \node[plain, text=darkRed, above=of r] {Programming and software engineering};

    \pause
    \node[cs, above=1cm of si] {%
      \begin{tabular}{c}
        Networking, security, and\\
        distributed computing
      \end{tabular}
    };
  \end{tikzpicture}
}