aboutsummaryrefslogtreecommitdiff
path: root/slides/2019-it-intro-computer-systems/img/trends.tex
blob: 7dea79852ed3199c96b4cc09a4a9b0d9b8c02f07 (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
\begin{tikzpicture}[
  arrow/.style = {
    draw,
    -latex,
  },
  plain/.style = {
    draw=none,
  }
]
  \coordinate(o) at (0,0);
  \coordinate(y) at (0,4);
  \coordinate(x) at (6,0);

  \coordinate(c1) at (0.5,0.5);
  \coordinate(c2) at (2.5,2.5);
  \coordinate(c3) at (3.5,2.5);
  \coordinate(c4) at (5.5,0.5);

  \path[arrow]
    (o) --
      node[plain, below, pos=0.9]{time}
    (x);
  \path[arrow]
    (o) --
      node[plain, pos=0.2, left]{%
        \begin{tabular}{c}
          thin\\
          clients
        \end{tabular}
      }
      node[plain, pos=0.8, left]{%
        \begin{tabular}{c}
          thick\\
          clients
        \end{tabular}
      }
    (y);
  
  \path[arrow]
    (c1) --
      node[plain, sloped, above]{faster computers}
    (c2);
  \path[arrow]
    (c3) --
      node[plain, sloped, above]{faster network}
    (c4);
\end{tikzpicture}