-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathslides.tex
96 lines (86 loc) · 3.09 KB
/
slides.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
% the sample slide is created with 16:9 aspect ratio
\documentclass[aspectratio=169]{beamer}
% remove the options if you do not want to have them
\usetheme[
background=saarland,
logo=uds
]{saarland}
% the background and logo are in the images directory
\graphicspath{{images/}}
% information for the title page
\author{Kailash Budhathoki}
\title{Saarland Beamer Theme}
\subtitle{An unofficial theme for Saarland University}
\institute{Max Planck Institute for Informatics and Saarland University}
\date{\today}
\begin{document}
% use plain option to remove the page number from the title slide
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}{Slide Full of Lists}
Saarland is a German state in the dynamic border triangle of Germany, France and Luxembourg.
\begin{itemize}
\item Saarland in figures
\begin{itemize}
\item \textbf{Federal state since}: 1st January 1957
\item \textbf{Area}: 2,569.69 $\text{km}^2$
\item \textbf{Highest mountain}: 695m (Dolberg in Hunsrück)
\item \textbf{Population}: 995,597 (31st December 2015)
\item \textbf{Unemployment rate}: 6.5\% (June 2017)
\end{itemize}
\item History
\begin{itemize}
\item \textbf{1960--1987}: France forms a Saar province as part of its reunification policies
\item \textbf{13th January 1935}: Referendum reinstates Saarland into the Third Reich
\item \textbf{1947}: Saarland is annexed to France in economic terms
\item \textbf{1957}: Saarland becomes the 10th Federal state of the Federal republic of Germany
\end{itemize}
\item Credits: \url{https://www.saarland.de/}
\end{itemize}
\end{frame}
\begin{frame}{Blocks}
\framesubtitle{This is a subtitle}
\begin{block}{Standard Block}
This is a standard block.
\end{block}
\begin{exampleblock}{Example Block}
This is an example block.
\end{exampleblock}
\begin{alertblock}{Alert Block}
This is an alert block.
\end{alertblock}
\end{frame}
\begin{frame}{Math}
Mathematics is the queen of sciences and arithmetic is the queen of mathematics.
\begin{align*}
\Pr(Y \geq 120) &= \Pr\left(Y-n\mu \geq 120-n\mu \right)\\
&= \Pr\left( \frac{Y-n\mu }{\sqrt{n}\sigma} \geq \frac{120-n\mu }{\sqrt{n}\sigma} \right)\\
&=\Pr\left( Z \geq \frac{120-n\mu }{\sqrt{n}\sigma} \right)\\
&=\Pr\left( Z \geq \frac{120-100 \cdot 1 }{10 \cdot 1} \right)\\
&=\Pr\left( Z \geq 2\right)
\end{align*}
\end{frame}
\begin{frame}{Two Columns}
We can also add two columns in the slides.
\begin{columns}[t]
\begin{column}[T]{0.4\textwidth}
This is the first column. In this column, we can also add a block for instance.
\vspace{1em}
\begin{block}{Block}
I am a block in a column.
\end{block}
\end{column}
\begin{column}[T]{0.4\textwidth}
\begin{itemize}
\item In this column,
\item we just add the
\item bullet points.
\end{itemize}
\end{column}
\end{columns}
\end{frame}
\begin{frame}{Acknowledgements}
This theme is inspired by Flip theme (creator: Flip Tanedo). The official beamer user guide was also very handy during the development.
\end{frame}
\end{document}