example.tex 1.13 KB
\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}