-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMinimal-PRE.tex
78 lines (52 loc) · 1.76 KB
/
Minimal-PRE.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
\documentclass{beamer}
\title{Title of the presentation}
\date{\today}
\author{Fabio Matti}
\usepackage{minimal/beamertheme}
\begin{document}
\begin{frame}[noframenumbering]
\titlepage
\end{frame}
\begin{frame}{Test page}
This is just a \emph{test} page.
\end{frame}
\begin{frame}{Gauss-Bonnet Theorem}
We now state a very remarkable result from differential geometry \cite{article2021}:
\begin{block}<1->{Gauss-Bonnet Theorem}
Suppose $S$ is a regular surface with Euler characteristic $\chi$.
It then holds that
\begin{equation}
\int_S K~dA = 2\pi\chi + \sum_i \phi_i
\label{equ:gauss-bonnet}
\end{equation}
\end{block}
This theorem implies the following consequences:
\begin{itemize}
\item<2-> The sphere has a total curvature of $4\pi$.
\item<3-> A plane has identical zero curvature.
\end{itemize}
\end{frame}
\begin{frame}{Two columns}
\begin{columns}
\begin{column}[]{0.5\textwidth}
First column of the \emph{columns} environment, which can be used to
get the multiple column look. This is very useful if you want to
cram your slide full of text and an image.
\end{column}
\begin{column}[]{0.5\textwidth}
\begin{figure}[h]
\centering
\begin{tikzpicture}
\fill[lightblue] (0, 0) circle (0.5);
\fill[darkblue] (0.5, 1) circle (1);
\end{tikzpicture}
\caption{Beautiful modern art.}
\label{fig:modern-art}
\end{figure}
\end{column}
\end{columns}
\end{frame}
\begin{frame}{Bibliography}
\bibliography{biblio.bib}
\end{frame}
\end{document}