-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.sty
More file actions
77 lines (72 loc) · 2.42 KB
/
theme.sty
File metadata and controls
77 lines (72 loc) · 2.42 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
% Packages
\usepackage{hyperref}
\usepackage{amssymb}
% Colors
\usepackage{xcolor}
\definecolor{maincolor}{RGB}{102, 0, 51}
\definecolor{secondarycolor}{RGB}{153, 0, 153}
\definecolor{thirdcolor}{RGB}{10, 20, 115}
%
\definecolor{myred}{RGB}{219, 9, 9}
\definecolor{mygreen}{RGB}{16, 230, 27}
\definecolor{mygrassgreen}{RGB}{105, 150, 26}
\definecolor{mydarkgreen}{RGB}{0, 150, 38}
\definecolor{myyellow}{RGB}{229, 250, 37}
\definecolor{myblue}{RGB}{8, 140, 166}
\definecolor{myviolet}{RGB}{145, 16, 181}
% Beamer theme
\setbeamercolor{titlelike}{fg=maincolor}
\setbeamercolor{frametitle}{fg=maincolor}
\setbeamertemplate{frametitle}{
\vspace{0,4cm}\LARGE\textbf{\insertframetitle}
\hfill
\normalsize\insertsection
}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}{
\;\;\;\;
\textcolor{secondarycolor}{\textbf{\insertframenumber/\inserttotalframenumber}}
\hfill
\href{https://github.com/claussmann}{\textcolor{secondarycolor}{@claussmann}}
\;\;\;\;\vspace{0.2cm}
}
\setbeamertemplate{itemize item}{\color{maincolor}$\blacktriangleright$}
\setbeamertemplate{itemize subitem}{\color{secondarycolor}$\blacktriangleright$}
%% Title slide at section
\newcommand{\includesectiontitle}{
\begin{frame}
\begin{center}
\LARGE\textbf{\textcolor{thirdcolor}{\insertsection}}
\end{center}
\end{frame}
}
%% End-Slide
\newcommand{\finalslide}[3]{
\begin{frame}{}
\begin{columns}
\begin{column}{0.5\textwidth}
\textbf{\LARGE \textcolor{maincolor}{Christian Laussmann}}\\
\vspace{0.2cm}
\textbf{\large Computer Scientist}\\
\textbf{\large Software Developer}\\
\vspace{0.2cm}
\href{https://github.com/claussmann}{\textcolor{thirdcolor}{\emph{github.com/claussmann}}}\\
\emph{\textcolor{thirdcolor}{Add me on LinkedIn}}
\vspace{1cm}
\textbf{Selected Topics:}
\begin{itemize}
\item #1
\item #2
\item #3
\end{itemize}
\end{column}
\begin{column}{0.5\textwidth}
\hspace*{5.6cm}
\includegraphics[width=2cm]{../logos/Logo}
\end{column}
\end{columns}
\begin{center}
\scriptsize\textbf{Mathematics must be respected.}
\end{center}
\end{frame}
}