From f33d96c8e6214bd160ff1bb99713dfbfa324608d Mon Sep 17 00:00:00 2001 From: Kerboul Date: Sun, 27 Apr 2025 15:34:15 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20d'un=20mod=C3=A8le=20de=20pr=C3=A9senta?= =?UTF-8?q?tion=20Beamer=20avec=20sections=20et=20contenu=20initial?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- diapo_master.tex | 95 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 diapo_master.tex 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