Blame view

example.tex 1.28 KB
523a6a1c9   pbreugno   :tada: Thème FEMT...
1
2
3
4
5
6
  \documentclass{beamer}
  
  \usetheme{femto}
  
  \title{This Is An Example Presentation}
  \subtitle{Using the femto template}
ee6daf9a6   pbreugno   :memo: Example wi...
7
8
9
10
11
  \author{Paul BREUGNOT\inst{1}, Vincent LAUDE\inst{2}}
  \institute{
  	\inst{1} Université de Bourgogne Franche-Comté\\
  	\inst{2} Centre National de la Recherche Scientifique
  }
523a6a1c9   pbreugno   :tada: Thème FEMT...
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
  
  \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}