-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_HZG.tex
174 lines (145 loc) · 4.33 KB
/
template_HZG.tex
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
\documentclass[xcolor=dvipsnames]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage[bitstream-charter]{mathdesign}
\useoutertheme[left,hideothersubsections]{sidebar}
% Several aspects of the Theme
\setbeamertemplate{blocks}[default]
\setbeamertemplate{itemize items}[square]
\setbeamertemplate{section in toc}[square]
\setbeamertemplate{subsection in toc}[square]
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}{}
% Define two main colours of the theme
%\definecolor{rojoUM}{rgb}{0.686,0.110,0.176}
\definecolor{rojoUM}{rgb}{0.0156,0.34118,0.6}
%\definecolor{gris}{rgb}{0.9,0.9,0.9}
\definecolor{gris}{rgb}{0.8549,0.8549,0.8549}
% Assignment of colours to several elements
\setbeamercolor{frametitle}{fg=white,bg=rojoUM}
\setbeamercolor{sidebar left}{bg=gris,fg=rojoUM}
\setbeamercolor{sidebar canvas left}{fg=red,bg=black}
\setbeamercolor{logo}{bg=rojoUM}
\setbeamercolor{section in sidebar}{bg=rojoUM,fg=white}
\setbeamercolor{subsection in sidebar}{bg=rojoUM,fg=white}
\setbeamercolor{section in sidebar shaded}{fg=black}
\setbeamercolor{subsection in sidebar shaded}{fg=black}
\setbeamercolor{button}{fg=rojoUM,bg=gris}
\setbeamercolor{block body}{bg=gris}
\setbeamercolor{block title}{bg=rojoUM,fg=white}
\setbeamercolor{item}{fg=rojoUM}
%\setbeamercolor{alerted text}{fg=Blue}
\setbeamercolor{alerted text}{fg=Red}
% Fonts
\usefonttheme{serif}
\setbeamerfont{frametitle}{shape=\itshape,series=\bfseries}
\setbeamerfont{block title}{series=\bfseries}
%\setbeamerfont{section in sidebar}{shape=\itshape}
%\setbeamerfont{section in sidebar shaded}{series=\bfseries}
\setbeamercovered{highly dynamic}
% This appears in the beginning of each section
\AtBeginSection[]{
\begin{frame}
\frametitle{Outline}
\tableofcontents[sectionstyle=show/shaded,subsectionstyle=show/show/hide]
\end{frame}
}
% This defines the logo image
\logo{\includegraphics[width=1.2cm]{HZG.pdf}}
%\logo{\includegraphics[width=2cm]{escudo-white.pdf}}
\begin{document}
% The title frame is made "by hand"
\begin{frame}{}{}
\begin{spacing}{1.0}
\begin{center}
\huge \bf \color{rojoUM} A Very Interesting Title \\ for my Presentation
\end{center}
\end{spacing}
\end{frame}
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\section{Introduction}
\subsection{Motivation}
\begin{frame}{Motivation of the presentation}
\begin{columns}
\column{0.5\textwidth}
%\includegraphics[width=\linewidth]{image.png}
\rule{\linewidth}{10em}
\column{0.5\textwidth}
\begin{itemize}
\item Remark 1 about the Figure
\item Remark 2 about the Figure
\item Remark 3 about the Figure
\end{itemize}
\end{columns}
\end{frame}
\subsection{Objectives}
\begin{frame}{Objectives}
\begin{block}{Box 1}
\begin{itemize}
\item Item 1
\item Item 2
\item Item 3
\item Item 4
\end{itemize}
\end{block}
\begin{block}<2>{Box 2}
\begin{itemize}
\item Item 1
\item Item 2
\item Item 3
\item Item 4
\end{itemize}
\end{block}
\end{frame}
\section{Results}
\subsection{Results 1}
\begin{frame}{First interesting results}
Some text before the details
\vfill
\begin{columns}
\column{0.5\textwidth}
%\includegraphics[width=\linewidth]{image.png}
\rule{\linewidth}{10em}
\column{0.5\textwidth}
\begin{itemize}[<+->]
\item remark 1 about the figure
\item remark 2 about the figure
\item remark 3 about the figure
\end{itemize}
\end{columns}
\end{frame}
\subsection{Results 2}
\begin{frame}{Second interesting results}
\begin{block}{These results are better explained without figure}
\begin{itemize}
\item Item 1
\item Item 2
\item Item 3
\item \alert<2>{This item is {\it really} important}
\end{itemize}
\end{block}
\end{frame}
\section{Conclusions}
\begin{frame}
\frametitle{Conclusions and Remarks}
\begin{block}{Take-home ideas}
\begin{itemize}
\item Very important conclusion 1
\item Very important conclusion 2
\item Most important conclusion: \alert{more funding required}
\end{itemize}
\end{block}
\end{frame}
\begin{frame}
\frametitle{Thank you}
\begin{center}
\alert{\Huge Thank you for the attention!}
\end{center}
\end{frame}
\end{document}