forked from ivangiangreco/basilea-beamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.tex
157 lines (118 loc) · 4.4 KB
/
presentation.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
\documentclass[%
aspectratio=169, % Aspect ratio. 43 and 169 are supported for the title slide
onlytextwidth, % Restricts the beamer columns environment to only use the text width
]{beamer}
\usepackage{basileabeam}
% Notes:
%\pgfpagesuselayout{2 on 1}[a4paper,border shrink=5mm]
%\setbeamertemplate{note page}[plain]
%\setbeameroption{show notes on second screen=bottom}
\title {Title}
\author {Author}
\email {[email protected]}
\institute {Institute, University of Basel}
\date {Date}
\ulogo {Template/header}
\ulistelement {Template/listelement}
\graphicspath{{Figures/}}
% Options:
\totalNoSlidesDisabled % To turn off the total number of slides in the footer. Comment this if you want the total number of slides in the footer
\headerSectionsDisabled % Comment this if you want a fancy header containing your sections.
% have the University of Basel logo on the title slide
\unibasLogoEnabled
% Use frame numbers in contrast to page numbering, or comment it to have page numbers again
\pageNumberingEnabled
\begin{document}
\begin{frame}[t,plain]
\titlepage
\end{frame}
\note{Notes can help you to remember important information. Turn on the notes option.}
\section{Section 1} % You can also have slides prior to the first section or work entirely without sections.
\begin{frame}[label=turing,c]{Some Images}
\begin{columns}[c]
\column{.55\textwidth}
\includegraphics[width=0.8\textwidth]{block}
\column{.45\textwidth}
Turing machine \cite{turing:1936,turing:1950}
\end{columns}
\end{frame}
\note{Notes can help you to remember important information. Turn on the notes option.}
\begin{frame}[c]{Some Images}
\begin{figure}
\includegraphics[width=0.8\textwidth]{turingmachine}
\caption{A Turing Machine.}
\end{figure}
\end{frame}
\note{Notes can help you to remember important information. Turn on the notes option.}
\begin{frame}[c]{Some Equations}
Now we introduce an equation.
\begin{theorem}
A Turing Machine is a 7-Tuple:
\begin{equation}
M = \langle Q, \Gamma, b, \Sigma, \delta, q_0, F \rangle
\end{equation}
\end{theorem}
A Turing Machine is a 7-Tuple even if defined in the text, as in $M = \langle Q, \Gamma, b, \Sigma, \delta, q_0, F \rangle$.
\end{frame}
\begin{frame}[c]{Beamer Overlays}
\begin{columns}
\column<+->{.3\textwidth}
This page consists of three columns,
\column<+->{.3\textwidth}
which are gradually revealed
\column<+->{.3\textwidth}
with the power of Beamer Overlays.
\end{columns}
\bigskip{}
Check out the beamer class user documentation \url{https://texdoc.org/serve/beamer/0}, in particular chapter 9 for overlays.
\bigskip{}
This slide also demonstrates that one should add the beamer option \texttt{onlytextwidth}.
\end{frame}
\note{Notes can help you to remember important information. Turn on the notes option.}
\section{Section 2}
\begin{frame}[t]{Items and Numbers}
\begin{columns}
\column{.5\textwidth}
\begin{itemize}
\item one
\item two
\item three
\end{itemize}
\column{.5\textwidth}
\begin{enumerate}
\item first
\item second
\item third
\end{enumerate}
\end{columns}
\end{frame}
\note{Notes can help you to remember important information. Turn on the notes option.}
\begin{frame}[c]{Tables}
Tables are also interesting.
\begin{table}[ht!]
\centering
\begin{tabular}{|l|c|l|} \hline
Title&$f$&Comments\\ \hline
The chemical basis of morphogenesis & 7327 & \\ \hline
On computable numbers & 6347 & Turing Machine\\ \hline
Computing machinery and intelligence & 6130 & \\ \hline
\end{tabular}
\end{table}
\end{frame}
\note{Notes can help you to remember important information. Turn on the notes option.}
\againframe{turing} % Search this file for label=turing to find the frame definition
\begin{frame}[c]{Speaker Notes}
You may turn on the notes and handout option to see the notes to the slides.
\end{frame}
\note{Notes can help you to remember important information. Turn on the notes option.}
\begin{frame}[t,plain]
\lastpage{{\usebeamerfont{title} Questions?}\\[5ex]
\end{frame}
\note{Notes can help you to remember important information. Turn on the notes option.}
\backupbegin
\begin{frame}{Backup}
Test
\end{frame}
\backupend
\end{document}