update templates

This commit is contained in:
2025-11-12 17:13:43 +01:00
parent 63f66fbf02
commit 3202ab8096
114 changed files with 1178 additions and 2034 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

55
Beamer/Parts/Apercu.tex Normal file
View File

@@ -0,0 +1,55 @@
\section{Aper\c{c}u global}
\begin{frame}{Aper\c{c}u global}
Texte normal \alert{Texte Alert} \exemple{Texte exemple} \emph{Texte emphase}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{block}{Bloc simple}
\begin{itemize}
\item Premier point
\end{itemize}
\end{block}
\begin{exampleblock}{Bloc exemple}
\begin{itemize}
\item Premier point
\end{itemize}
\end{exampleblock}
\begin{alertblock}{Bloc alert}
\begin{itemize}
\item Premier point
\end{itemize}
\end{alertblock}
\end{column}
\begin{column}{0.5\textwidth}
\boiteviolette{
Une boite violette
}
\boiteorange{
Une boite orange
}
\boitegrise{
Une boite grise
}
\begin{tcolorbox}[tabvert,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt, title=Mon tableau des prix]
Couleur & Prix 1 & Prix 2 & Prix 3 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00
\end{tcolorbox}
\end{column}
\end{columns}
\end{frame}

28
Beamer/Parts/Blocs.tex Normal file
View File

@@ -0,0 +1,28 @@
\section{Les blocs}
\begin{frame}{Les blocs}
\begin{block}{Bloc simple}
\begin{itemize}
\item Premier point
\item Second point
\item Troisième point
\end{itemize}
\end{block}
\begin{exampleblock}{Bloc exemple}
\begin{itemize}
\item Premier point
\item Second point
\item Troisième point
\end{itemize}
\end{exampleblock}
\begin{alertblock}{Bloc alert}
\begin{itemize}
\item Premier point
\item Second point
\item Troisième point
\end{itemize}
\end{alertblock}
\end{frame}

44
Beamer/Parts/Boites.tex Normal file
View File

@@ -0,0 +1,44 @@
\section{Les bo\^ites}
\begin{frame}{Les boites}
\begin{columns}
\begin{column}{0.5\textwidth}
\boitejaune{
Ceci est \\
une boite jaune
}
\boiteorange{
Ceci est \\
une boite orange
}
\boitemarron{
Ceci est \\
une boite marron
}
\end{column}
\begin{column}{0.5\textwidth}
\boiteviolette{
Ceci est \\
une boite violette
}
\boitebleue{
Ceci est \\
une boite bleue
}
\boitegrise{
Ceci est \\
une boite grise
}
\end{column}
\end{columns}
\end{frame}

11
Beamer/Parts/Figures.tex Normal file
View File

@@ -0,0 +1,11 @@
\section{Les Figures/logos}
\begin{frame}{Titre de la frame}
\begin{figure}
\centering
\includegraphics[scale=0.5]{example-image-a}
\caption{Une bonne description de la figure}
\end{figure}
\end{frame}

31
Beamer/Parts/Listes.tex Normal file
View File

@@ -0,0 +1,31 @@
\section{Les listes}
\subsection{Liste à item}
\begin{frame}{Titre de la frame}
\begin{itemize}
\item premier élément de liste,
\item deuxième élément de liste,
\item troisième élément de liste.
\end{itemize}
\end{frame}
\subsection{Liste énumérative}
\begin{frame}{Titre de la frame}
\begin{enumerate}
\item élément de liste numéro 1,
\item élément de liste numéro 2,
\item élément de liste numéro 3.
\end{enumerate}
\end{frame}
\subsection{Liste descriptive}
\begin{frame}{Titre de la frame}
\begin{description}
\item [Thème de présentation : ] ces thèmes sont en fait...
\item [Thème de couleur : ] gère tout ce qui est couleur...
\item [Thème de police : ] s'occupe de tout ce qui est police, gras...
\item [Thème interne : ] s'occupe de l'apparence des éléments...
\end{description}
\end{frame}

46
Beamer/Parts/Tableaux.tex Normal file
View File

@@ -0,0 +1,46 @@
\section{Les tableaux}
\begin{frame}{Tableaux}
% merci: http://tex.stackexchange.com/questions/112343/beautiful-table-samples
\begin{tcolorbox}[tabjaune,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt]
Couleur & Prix 1 & Prix 2 & Prix 3 & Prix 4 & Prix 5 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 & 40.00 & 100.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 & 50.00 & 140.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 & 60.00 & 180.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00 & 150.00 & 420.00
\end{tcolorbox}
\begin{tcolorbox}[tabvert,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt, title=Mon tableau des prix]
Couleur & Prix 1 & Prix 2 & Prix 3 & Prix 4 & Prix 5 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 & 40.00 & 100.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 & 50.00 & 140.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 & 60.00 & 180.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00 & 150.00 & 420.00
\end{tcolorbox}
\end{frame}
\begin{frame}{Tableaux}
% merci: http://tex.stackexchange.com/questions/112343/beautiful-table-samples
\begin{tcolorbox}[tabgris,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt]
Couleur & Prix 1 & Prix 2 & Prix 3 & Prix 4 & Prix 5 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 & 40.00 & 100.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 & 50.00 & 140.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 & 60.00 & 180.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00 & 150.00 & 420.00
\end{tcolorbox}
\begin{tcolorbox}[taborange,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt, title=Mon tableau des prix]
Couleur & Prix 1 & Prix 2 & Prix 3 & Prix 4 & Prix 5 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 & 40.00 & 100.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 & 50.00 & 140.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 & 60.00 & 180.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00 & 150.00 & 420.00
\end{tcolorbox}
\end{frame}

13
Beamer/Parts/Texte.tex Normal file
View File

@@ -0,0 +1,13 @@
\section{Le texte}
\begin{frame}{Titre de la frame}
Voici du texte normal
\alert{Voici du texte \texttt{alert}}
\exemple{Voici du texte \texttt{exemple}}
\emph{Voici du texte \texttt{emphase}}
\end{frame}

BIN
Beamer/beamer.pdf Normal file

Binary file not shown.

78
Beamer/beamer.tex Normal file
View File

@@ -0,0 +1,78 @@
%! TeX Program = pdflatex
%! TeX Root = ./beamer.tex
\documentclass{bredelebeamer}
%\pdfpcsetup{duration=45,lastminutes=5,enduserslide=\getrefnumber{lastslide}}
\selectlanguage{french}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title[Titre version courte]{Placez votre titre ici dans sa version longue}
% Titre du diaporama
\subtitle{Vous pouvez ajouter un sous-titre}
% Sous-titre optionnel
\author[P. Nom]{Prénom Nom\inst{1}}
% La commande \inst{...} Permet d'afficher l' affiliation de l'intervenant.
% Si il y a plusieurs intervenants: Marcel Dupont\inst{1}, Roger Durand\inst{2}
% Il suffit alors d'ajouter un autre institut sur le modèle ci-dessous.
\institute[(ObAS)]
{
\inst{1}%
Observatoire Astronomique de Strasbourg, CNRS
}
\date{\today}
% Optionnel. La date, généralement celle du jour de la conférence
\subject{Sujet de votre diaporama}
% C'est utilisé dans les métadonnes du PDF
\titlegraphic{
\includegraphics[height=0.10\textheight]{Figures/logos/logo_ObAS.pdf}
\hspace{1.5cm}
\includegraphics[height=0.10\textheight]{Figures/logos/logo_Unistra.pdf}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}{Sommaire}
\tableofcontents
% possibilité d'ajouter l'option [pausesections]
\end{frame}
\input{Parts/Apercu}
\input{Parts/Blocs}
\input{Parts/Boites}
\input{Parts/Listes}
\input{Parts/Texte}
\input{Parts/Tableaux}
\input{Parts/Figures}
\part*{}
\begin{frame}[plain,label=lastslide]
Pour finir, je dois citer \citet{FavoriteAuthor}, voilà ! Je peux également choisir de le citer en pied de page\footcite{FavoriteAuthor}
\end{frame}
\appendix
\begin{frame}[plain]{Bibliographie}
\renewcommand*{\bibfont}{\footnotesize}
\printbibliography
\end{frame}
\end{document}

10
Beamer/biblio.bib Normal file
View File

@@ -0,0 +1,10 @@
@article{FavoriteAuthor,
author = {{Another-Name}, I. and {Another-Name}, J. and {Another-Name}, K.
and {Another-Name}, L.},
title = "{Some really interesting article I didn't even write}",
journal = {Nature},
year = 2005,
month = oct,
adsurl = {https://ui.adsabs.harvard.edu/abs/},
adsnote = {Provided by the SAO/NASA Astrophysics Data System},
}

View File

@@ -9,9 +9,12 @@
\ProvidesClass{bredelebeamer}[17/02/2015, v1.0]
\PassOptionsToPackage{svgnames}{xcolor}
\LoadClass[compress,8pt]{beamer}
\LoadClass[aspectratio=1610,compress,8pt]{beamer}
\setbeamersize{text margin left=5mm, text margin right=5mm}
\usepackage[french]{babel}
% \usepackage[french]{babel}
\usepackage[export]{adjustbox}
\usepackage[english,french]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{helvet}
@@ -19,7 +22,21 @@
\usepackage{graphicx}% http://ctan.org/pkg/graphicx
\usepackage[footnotesize,hang]{caption} % réduire la taille des légendes des images
\usepackage{hyperref}
\usepackage{refcount}
\usepackage{tikz}
\usepackage{qrcode}
\usepackage[overridenote]{pdfpc}
%% Setup for bibliography
\usepackage{csquotes}
\usepackage{microtype}
\usepackage[backend=biber,natbib=true,style=authoryear,uniquelist=false,uniquename=false,giveninits=false,isbn=false,url=false,doi=false,maxcitenames=3,maxbibnames=6,sorting=nyvt]{biblatex}
\addbibresource[glob]{biblio.bib}
\BiblatexSplitbibDefernumbersWarningOff
\DeclareFieldFormat{labelnumberwidth}{}
\setbeamertemplate{bibliography item}{}
\emergencystretch=1em
\renewcommand{\footcite}[2][]{\footnote[#1]{\citet{#2}}}
\usepackage{appendixnumberbeamer}% ne compte pas les slides backups dans le nombre total
\long\def\beamer@@ssection*#1{\beamer@section[]{}}% retire les sections invisibles de la barre de navigation
@@ -47,6 +64,7 @@
\usepackage{tcolorbox}
\usepackage{tabularx}
\usepackage{array}
\usepackage{booktabs}
\usepackage{colortbl}
\tcbuselibrary{skins}
@@ -152,38 +170,39 @@ coltitle=white,center title}}
\beamer@compresstrue
\defbeamertemplate*{headline}{smoothbars theme}
{%
\begin{beamercolorbox}[ht=2.125ex,dp=3.150ex]{section in head/foot}
\insertnavigation{\paperwidth}
\end{beamercolorbox}%
% Commenter les 4 lignes suivantes si vous ne voulez pas la barre des sous-sections.
\begin{beamercolorbox}[ht=2.125ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot}
\usebeamerfont{subsection in head/foot}\insertsubsectionhead
\end{beamercolorbox}%
\begin{beamercolorbox}[ht=2.125ex,dp=3.150ex]{section in head/foot}
\insertnavigation{\paperwidth}
\end{beamercolorbox}%
% Comment next block to hide subsection bar
\ifnum\c@subsection>0{%
\begin{beamercolorbox}[ht=2.125ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot}%
\usebeamerfont{subsection in head/foot}\insertsubsectionhead%
\ifnum\c@subsubsection>0{\;-\;\insertsubsubsectionhead}\fi%
\end{beamercolorbox}%
}\fi%
}
\setbeamercolor{author in head/foot}{bg=leftFootlineColor, fg=authorColor}
\setbeamercolor{title in head/foot}{bg=middleFootlineColor, fg=footlineTitleColor}
\setbeamercolor{institute in head/foot}{fg=instituteColor}
\setbeamercolor{date in head/foot}{bg=rightFootlineColor, fg=dateColor}
\defbeamertemplate*{footline}{infolines theme}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor~~
\insertshortinstitute
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
\usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em}
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\end{beamercolorbox}
\defbeamertemplate*{footline}{infolines theme}{%
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor~~%
\insertshortinstitute%
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle%
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
\usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em}%
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}%
\end{beamercolorbox}%
}%
\vskip0pt%
}%
\vskip0pt%
}
\mode
<all>
@@ -196,76 +215,125 @@ leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot}
\usepackage{etoolbox}
\AtBeginEnvironment{exampleblock}{%
\setbeamercolor{itemize item}{fg=exampleTitleBlockColor!70}
\setbeamercolor{itemize item}{fg=exampleTitleBlockColor!70}
}
\AtBeginEnvironment{alertblock}{%
\setbeamercolor{itemize item}{fg=alertTitleBlockColor!70}
\setbeamercolor{itemize item}{fg=alertTitleBlockColor!70}
}
\AtBeginEnvironment{block}{%
\setbeamercolor{itemize item}{fg=normalTitleBlockColor!70}
\setbeamercolor{itemize item}{fg=normalTitleBlockColor!70}
}
\newcommand{\boitejaune}[1]{
\begin{center}
\fcolorbox{Framajaune}{Framajaunelight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
\begin{center}
\fcolorbox{Framajaune}{Framajaunelight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
}
\newcommand{\boiteviolette}[1]{
\begin{center}
\fcolorbox{Framaviolet}{Framavioletlight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
\begin{center}
\fcolorbox{Framaviolet}{Framavioletlight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
}
\newcommand{\boiteorange}[1]{
\begin{center}
\fcolorbox{Framaorange}{Framaorangelight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
\begin{center}
\fcolorbox{Framaorange}{Framaorangelight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
}
\newcommand{\boitemarron}[1]{
\begin{center}
\fcolorbox{Framamarron}{Framamarronlight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
\begin{center}
\fcolorbox{Framamarron}{Framamarronlight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
}
\newcommand{\boitegrise}[1]{
\begin{center}
\fcolorbox{Framagris}{Framagrislight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
\begin{center}
\fcolorbox{Framagris}{Framagrislight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
}
\newcommand{\boitebleue}[1]{
\begin{center}
\fcolorbox{Framableu}{Framableulight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
\begin{center}
\fcolorbox{Framableu}{Framableulight}{
\begin{minipage}{0.5\textwidth}
#1
\end{minipage}
}
\end{center}
}
\end{center}
%%%%%%%%%%%%%%%%%%%%%%%%%%%% Code Listings
% Default fixed font does not support bold face
\DeclareFixedFont{\ttb}{T1}{txtt}{bx}{n}{9} % for bold
\DeclareFixedFont{\ttm}{T1}{txtt}{m}{n}{9} % for normal
% Custom colors
\usepackage{color}
\definecolor{deepblue}{rgb}{0,0,0.5}
\definecolor{deepred}{rgb}{0.6,0,0}
\definecolor{deepgreen}{rgb}{0,0.5,0}
\definecolor{orange}{rgb}{1.0,0.49,0.0}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{HTML}{C42043}
\definecolor{backcolour}{HTML}{F2F2F2}
\definecolor{bookColor}{cmyk}{0,0,0,0.90}
\color{bookColor}
\usepackage{listings}
% Python style for highlighting
\newcommand\pythonstyle{\lstset{
language=Python,
basicstyle=\scriptsize\ttfamily,
morekeywords={self}, % Add keywords here
keywordstyle=\bf\color{deepblue},
emph={MyClass,__init__}, % Custom highlighting
emphstyle=\bf\color{deepred}, % Custom highlighting style
stringstyle=\color{deepgreen},
commentstyle=\bf\color{codegray},
frame=single, % Any extra options here
showstringspaces=false,
breaklines=true,
}}
% Python environment
\lstnewenvironment{python}[1][]
{
\pythonstyle
\lstset{#1}
}
{}
% Python for external files
\newcommand\pythonexternal[2][]{{
\pythonstyle
\lstinputlisting[#1]{#2}
}}

Binary file not shown.

Binary file not shown.

View File

@@ -1,300 +0,0 @@
\documentclass{bredelebeamer}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title[Titre version courte]{Placez votre titre ici dans sa version longue}
% Titre du diaporama
\subtitle{Vous pouvez ajouter un sous-titre}
% Sous-titre optionnel
\author{Thibault Barnouin\inst{1}}
% La commande \inst{...} Permet d'afficher l' affiliation de l'intervenant.
% Si il y a plusieurs intervenants: Marcel Dupont\inst{1}, Roger Durand\inst{2}
% Il suffit alors d'ajouter un autre institut sur le modèle ci-dessous.
\institute[(ObAS)]
{
\inst{1}%
Observatoire Astronomique de Strasbourg, CNRS
}
\date{September 30$^\text{th}$ 2025}
% Optionnel. La date, généralement celle du jour de la conférence
\subject{Sujet de votre diaporama}
% C'est utilisé dans les métadonnes du PDF
\titlegraphic{
\includegraphics[height=0.10\textheight]{images/logo_ObAS.pdf}
\hspace{1.5cm}
\includegraphics[height=0.10\textheight]{images/logo_Unistra.pdf}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Sommaire}
\tableofcontents
% possibilité d'ajouter l'option [pausesections]
\end{frame}
\section{Aperçu global}
\begin{frame}{Aperçu global}
Texte normal \alert{Texte Alert} \exemple{Texte exemple} \emph{Texte emphase}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{block}{Bloc simple}
\begin{itemize}
\item Premier point
\end{itemize}
\end{block}
\begin{exampleblock}{Bloc exemple}
\begin{itemize}
\item Premier point
\end{itemize}
\end{exampleblock}
\begin{alertblock}{Bloc alert}
\begin{itemize}
\item Premier point
\end{itemize}
\end{alertblock}
\end{column}
\begin{column}{0.5\textwidth}
\boiteviolette{
Une boite violette
}
\boiteorange{
Une boite orange
}
\boitegrise{
Une boite grise
}
\begin{tcolorbox}[tabvert,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt, title=Mon tableau des prix]
Couleur & Prix 1 & Prix 2 & Prix 3 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00
\end{tcolorbox}
\end{column}
\end{columns}
\end{frame}
\section{Les blocs}
\begin{frame}{Les blocs}
\begin{block}{Bloc simple}
\begin{itemize}
\item Premier point
\item Second point
\item Troisième point
\end{itemize}
\end{block}
\begin{exampleblock}{Bloc exemple}
\begin{itemize}
\item Premier point
\item Second point
\item Troisième point
\end{itemize}
\end{exampleblock}
\begin{alertblock}{Bloc alert}
\begin{itemize}
\item Premier point
\item Second point
\item Troisième point
\end{itemize}
\end{alertblock}
\end{frame}
\section{Les bo\^ites}
\begin{frame}{Les boites}
\begin{columns}
\begin{column}{0.5\textwidth}
\boitejaune{
Ceci est \\
une boite jaune
}
\boiteorange{
Ceci est \\
une boite orange
}
\boitemarron{
Ceci est \\
une boite marron
}
\end{column}
\begin{column}{0.5\textwidth}
\boiteviolette{
Ceci est \\
une boite violette
}
\boitebleue{
Ceci est \\
une boite bleue
}
\boitegrise{
Ceci est \\
une boite grise
}
\end{column}
\end{columns}
\end{frame}
\section{Les listes}
\subsection{Liste à item}
\begin{frame}{Titre de la frame}
\begin{itemize}
\item premier élément de liste,
\item deuxième élément de liste,
\item troisième élément de liste.
\end{itemize}
\end{frame}
\subsection{Liste énumérative}
\begin{frame}{Titre de la frame}
\begin{enumerate}
\item élément de liste numéro 1,
\item élément de liste numéro 2,
\item élément de liste numéro 3.
\end{enumerate}
\end{frame}
\subsection{Liste descriptive}
\begin{frame}{Titre de la frame}
\begin{description}
\item [Thème de présentation : ] ces thèmes sont en fait...
\item [Thème de couleur : ] gère tout ce qui est couleur...
\item [Thème de police : ] s'occupe de tout ce qui est police, gras...
\item [Thème interne : ] s'occupe de l'apparence des éléments...
\end{description}
\end{frame}
\section{Le texte}
\begin{frame}{Titre de la frame}
Voici du texte normal
\alert{Voici du texte \texttt{alert}}
\exemple{Voici du texte \texttt{exemple}}
\emph{Voici du texte \texttt{emphase}}
\end{frame}
\section{Les tableaux}
\begin{frame}{Tableaux}
% merci: http://tex.stackexchange.com/questions/112343/beautiful-table-samples
\begin{tcolorbox}[tabjaune,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt]
Couleur & Prix 1 & Prix 2 & Prix 3 & Prix 4 & Prix 5 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 & 40.00 & 100.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 & 50.00 & 140.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 & 60.00 & 180.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00 & 150.00 & 420.00
\end{tcolorbox}
\begin{tcolorbox}[tabvert,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt, title=Mon tableau des prix]
Couleur & Prix 1 & Prix 2 & Prix 3 & Prix 4 & Prix 5 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 & 40.00 & 100.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 & 50.00 & 140.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 & 60.00 & 180.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00 & 150.00 & 420.00
\end{tcolorbox}
\end{frame}
\begin{frame}{Tableaux}
% merci: http://tex.stackexchange.com/questions/112343/beautiful-table-samples
\begin{tcolorbox}[tabgris,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt]
Couleur & Prix 1 & Prix 2 & Prix 3 & Prix 4 & Prix 5 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 & 40.00 & 100.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 & 50.00 & 140.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 & 60.00 & 180.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00 & 150.00 & 420.00
\end{tcolorbox}
\begin{tcolorbox}[taborange,tabularx={X||Y|Y|Y|Y||Y}, boxrule=0.5pt, title=Mon tableau des prix]
Couleur & Prix 1 & Prix 2 & Prix 3 & Prix 4 & Prix 5 \\\hline\hline
Rouge & 10.00 & 20.00 & 30.00 & 40.00 & 100.00 \\\hline
Vert & 20.00 & 30.00 & 40.00 & 50.00 & 140.00 \\\hline
Bleu & 30.00 & 40.00 & 50.00 & 60.00 & 180.00 \\\hline\hline
Orange & 60.00 & 90.00 & 120.00 & 150.00 & 420.00
\end{tcolorbox}
\end{frame}
\section{Les images}
\begin{frame}{Titre de la frame}
\begin{figure}
\centering
\includegraphics[scale=0.5]{images/logo_ObAS.pdf}
\caption{Une bonne description de la figure}
\end{figure}
\end{frame}
\end{document}