Files
timelapse-diapo/diapo_master.tex

95 lines
1.8 KiB
TeX

\documentclass[aspectratio=169]{beamer}
% Theme and color setup
\usetheme{Madrid}
\usecolortheme{default}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}[frame number]
% Show progress bar
\usepackage{etoolbox}
\makeatletter
\patchcmd{\beamer@sectionintoc}{\vskip1.5em}{\vskip0.5em}{}{}
\makeatother
\AtBeginSection[]
{
\begin{frame}
\frametitle{Plan}
\tableofcontents[currentsection]
\end{frame}
}
% Packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{amsmath, amssymb, amsfonts}
% Title information
\title{Présentation Titre}
\subtitle{Sous-titre}
\author{Votre Nom}
\institute{Votre Institution}
\date{\today}
\begin{document}
% Title frame
\begin{frame}
\titlepage
\end{frame}
% Table of contents
\begin{frame}{Plan}
\tableofcontents
\end{frame}
% First section
\section{Introduction}
\begin{frame}{Introduction}
\begin{itemize}
\item Point 1
\item Point 2
\item Point 3
\end{itemize}
\end{frame}
% Second section
\section{Méthodes}
\begin{frame}{Méthodes}
\begin{itemize}
\item Méthode 1
\item Méthode 2
\item Méthode 3
\end{itemize}
\end{frame}
% Third section
\section{Résultats}
\begin{frame}{Résultats}
\begin{columns}
\column{0.5\textwidth}
\begin{itemize}
\item Résultat 1
\item Résultat 2
\end{itemize}
\column{0.5\textwidth}
% Placeholder for an image
\end{columns}
\end{frame}
% Fourth section
\section{Conclusion}
\begin{frame}{Conclusion}
\begin{block}{Résumé}
Points clés de la présentation.
\end{block}
\begin{alertblock}{Perspectives}
Travaux futurs et améliorations possibles.
\end{alertblock}
\end{frame}
\end{document}