-
Notifications
You must be signed in to change notification settings - Fork 15
/
presentation.tex
130 lines (96 loc) · 3.36 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
\documentclass[aspectratio=169]{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.
\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}[c]{Some Images}
\begin{columns}[c]
\column{.55\textwidth}
\includegraphics[width=0.8\textwidth]{block}
\column{.45\textwidth}
Turing machine
\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}
\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.}
\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}