commit f33d96c8e6214bd160ff1bb99713dfbfa324608d Author: Kerboul Date: Sun Apr 27 15:34:15 2025 +0200 Ajout d'un modèle de présentation Beamer avec sections et contenu initial diff --git a/diapo_master.tex b/diapo_master.tex new file mode 100644 index 0000000..423df98 --- /dev/null +++ b/diapo_master.tex @@ -0,0 +1,95 @@ +\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} \ No newline at end of file