-
Notifications
You must be signed in to change notification settings - Fork 3
/
template.tex
54 lines (41 loc) · 1.03 KB
/
template.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
\documentclass[aspectratio=43]{beamer}
\usepackage[T1]{fontenc}
\usepackage[default]{gillius}
\definecolor{cDESYBlue}{RGB}{0,133,215}
\definecolor{cDESYOrange}{RGB}{242,142,0}
\definecolor{desycyan}{RGB}{0,166,235}
\mode<presentation>{
\usetheme{desy}
\setbeamercovered{transparent}
}
\usepackage{graphicx}
\usepackage{amssymb,amsfonts,amsmath,mathtext}
\graphicspath{{images}}
\usepackage[normalem]{ulem}
\setbeamercolor{block title}{fg=white,bg=cDESYBlue}
\setbeamercolor{block body}{fg=white,bg=desycyan}
\setbeamercolor{footnote}{fg=black}
\setbeamercolor{footnote mark}{fg=black}
\begin{document}
\def \transp{50}
\beamertemplatenavigationsymbolsempty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title[]{Title}
\author{Name~Surname}
\institute[ShortInst]{Institute Name}
\date{\today}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}[plain]
\tableofcontents
\end{frame}
\section{Intro}
\begin{frame}
\begin{block}{Block}
\begin{itemize}
\item Item
\end{itemize}
\end{block}
\end{frame}
\end{document}