example.tex
1.13 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
\documentclass{beamer}
\usetheme{femto}
\title{This Is An Example Presentation}
\subtitle{Using the femto template}
\author{Paul BREUGNOT}
\begin{document}
\begin{frame}[plain,c]
\titlepage
\end{frame}
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents
\end{frame}
\section{Block}
\subsection{Example Block}
\begin{frame}[c]
\frametitle{\secname}
\framesubtitle{\subsecname}
\begin{block}{A Block.}
This is a normal block.
\end{block}
\begin{alertblock}{Ho No!}
This is an alert block!
\end{alertblock}
\begin{exampleblock}{A Small Example.}
This is an example block.
\end{exampleblock}
\end{frame}
\section{List}
\subsection{Example Item}
\begin{frame}[c]
\frametitle{List}
\framesubtitle{List Example}
\begin{itemize}
\item FEMTO-ST
\begin{itemize}
\item Subitem
\end{itemize}
\item GitLab
\item LaTeX
\end{itemize}
\end{frame}
\subsection{Example Enum}
\begin{frame}[c]
\frametitle{List}
\framesubtitle{Enum Example}
\begin{enumerate}
\item First
\begin{enumerate}
\item Subenum
\end{enumerate}
\item Second
\end{enumerate}
\end{frame}
\end{document}