-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslides.tex
More file actions
87 lines (77 loc) · 1.81 KB
/
slides.tex
File metadata and controls
87 lines (77 loc) · 1.81 KB
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
\section{First section}
\subsection{First subsection}
\begin{frame}{First slide title}{Subtitle}
\begin{itemize}
\item {
First!!!
\pause
}
\item {
Second!
}
\item<4-> {
Fourth!
}
\item<3-> {
Third... \uncover<5-> {Voil\`{a}!}
}
\end{itemize}
% You can include images with:
%\includegraphics[height=5cm]{Image}
\end{frame}
\subsection{Second subsection}
\begin{frame}{Second slide title}
\begin{block}{Block title}
Yo!
\end{block}
\begin{alertblock}{Title}
Example
\end{alertblock}
\begin{exampleblock}{Title2}
Example
\end{exampleblock}
\begin{theorem}
Theorem
\end{theorem}
\begin{example}
Example
\end{example}
\end{frame}
\section{Second section}
\subsection{First subsection}
\begin{frame}{Third slide title}
\begin{columns}
\begin{column}{0.8\textwidth} % The sum of all column width should not exceed \textwidth value
This column occupy 80\% of the slide width...
\pause
\end{column}
\begin{column}{0.2\textwidth}
And this just 20\%.\\
\begin{figure}
\centering
\includegraphics[width=0.80\textwidth]{example}
\end{figure}
\end{column}
\end{columns}
\end{frame}
\section{Third section}
\begin{frame}{Example of code}
\ccode{my_c_code.c}
% For other languages substitute ccode with, for example, javacode, pythoncode, ...
% Check lang_header.tex for a list of all available languages
\end{frame}
\begin{frame}{Other example}
\centering % Horizontally
% This just print a piece of code in red and monospace font
\code{
Some code in red
}
\end{frame}
\begin{frame}[shrink=20]{Text with overflow} % Reduce font size if text overflows
\lipsum[1-2]
\end{frame}
\begin{frame}[allowframebreaks]{Text with pagebreak} % Break slide if text overflows
\lipsum[1-2]
\framebreak % Force a new frame here
Text after frame break.
\end{frame}