aboutsummaryrefslogtreecommitdiff
path: root/slides/2019-it-intro-computer-systems/beamerinnerthemergd.sty
blob: 0d49176ec72b97bf7566ef58c3973c6de1bfcaed (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
\mode<presentation>

%%%
% Title page
%%%
\defbeamertemplate*{title page}{rgd}[1][]{
  \begin{tikzpicture}[remember picture, overlay]
    \usebeamercolor{titlepage}
    % Add top-left triangle with university logo
    \filldraw[draw=rgdGray,fill=rgdGray]
      (current page.north west) --
      (current page.north) --
        node[draw=none,pos=0.5](Logo){\includegraphics[width=3cm]{img/logo}}
      (current page.west) --
      (current page.north west);
    % Add title
    \node[
      text=fg,
      text width=0.75\paperwidth,
    ] (Title) at ([shift={(0,-0.5cm)}]current page){%
      \centering\usebeamerfont{title}\inserttitle\\%
    };
    % Add subtitle
    \node[
      text=fg,
      text width=0.75\paperwidth,
      below=0pt of Title,
    ] (Subtitle) {%
      \centering\usebeamerfont{subtitle}\insertsubtitle\\%
    };
    % Add authors
    \usebeamercolor{author}
    \node[
      text=fg,
      text width=0.75\paperwidth,
      below=12pt of Subtitle,
    ] (Author) {%
      \centering\usebeamerfont{author}\insertauthor\\%
    };
  \end{tikzpicture}
}

\mode<all>