119 lines
No EOL
3.6 KiB
TeX
119 lines
No EOL
3.6 KiB
TeX
\documentclass{beamer}
|
|
\usetheme{Boadilla}
|
|
|
|
% importations
|
|
\usepackage[french]{babel} % pour dire que le texte est en francais
|
|
\usepackage{csquotes}
|
|
\usepackage[T1]{fontenc} % pour les font postscript
|
|
\usepackage[cyr]{aeguill} % Police vectorielle TrueType, guillemets francais
|
|
\usepackage{epsfig} % pour gérer les images
|
|
\usepackage{amsmath,amsthm, stmaryrd} % très bon mode mathématique
|
|
\usepackage{amsfonts,amssymb,bm, bbold}% permet la definition des ensembles
|
|
\usepackage{algorithm2e} % pour les algorithmes
|
|
\usepackage{algpseudocode} % pour les algorithmes
|
|
\usepackage{graphicx}
|
|
\usepackage{subcaption}
|
|
\usepackage{float} % pour le placement des figure
|
|
\usepackage{url} % pour une gestion efficace des url
|
|
\usepackage{hyperref} % pour les hyperliens dans le document
|
|
|
|
\usepackage{appendixnumberbeamer} % Cacher la numérotation des slides d'appendices
|
|
\usepackage{beamerappendixnote}
|
|
\usepackage{adjustbox} % To resize tikzpictures
|
|
\usepackage{fontawesome5}
|
|
\usepackage{makecell}
|
|
|
|
% Images
|
|
\graphicspath{{../img/}{../figure/}}
|
|
|
|
% Tikz
|
|
\usepackage{tikz} % For graph plots
|
|
\usepackage[outline]{contour}
|
|
%% Tikz Related
|
|
\usetikzlibrary{calc,shapes,backgrounds,arrows,automata,shadows,positioning}
|
|
\usetikzlibrary{arrows,shapes,positioning,shadows,trees,calc,backgrounds,automata,positioning}
|
|
\usetikzlibrary{decorations.pathreplacing,calligraphy,external,petri}
|
|
|
|
%% Tikz sets
|
|
\tikzset{
|
|
basic/.style = {draw, text width=3cm, font=\sffamily, rectangle},
|
|
root/.style = {basic, rounded corners=2pt, thin, align=center,
|
|
fill=green!30},
|
|
level 2/.style = {basic, rounded corners=6pt, thin,align=center, fill=green!60,
|
|
text width=8em},
|
|
level 3/.style = {basic, thin, align=left, fill=pink!60, text width=3.5cm}
|
|
}
|
|
|
|
% Couleurs
|
|
% pour tickz multilevel
|
|
\input{../shared/colors}
|
|
%% Biblio
|
|
\input{../shared/biblio.tex}
|
|
|
|
% Footnote
|
|
\makeatletter
|
|
\newcommand\blfootnote[1]{%
|
|
\begingroup
|
|
\renewcommand{\@makefntext}[1]{\noindent\makebox[1.8em][r]#1}
|
|
\renewcommand\thefootnote{}\footnote{#1}%
|
|
\addtocounter{footnote}{-1}%
|
|
\endgroup
|
|
}
|
|
\makeatother
|
|
|
|
|
|
% Beamer
|
|
\setbeamertemplate{headline}{%
|
|
\begin{beamercolorbox}[ht=2.25ex,dp=3.75ex]{section in head/foot}
|
|
\insertnavigation{\paperwidth}
|
|
\end{beamercolorbox}%
|
|
}%
|
|
\beamertemplatenavigationsymbolsempty % Pas de bar de navigation
|
|
|
|
% Beamer settings
|
|
\setbeamertemplate{caption}[numbered]
|
|
\setbeamertemplate{note page}[plain] % Notes
|
|
\setbeamerfont{caption}{size=\scriptsize} % Taille des légendes
|
|
\setbeamercolor{palette primary}{bg=cyanps, fg=black}
|
|
\setbeamercolor{palette secondary}{bg=blueps, fg=white}
|
|
\setbeamercolor{palette tertiary}{bg=bluefonceps, fg=white}
|
|
\setbeamercolor{structure}{fg=blueps}
|
|
|
|
|
|
|
|
\subtitle{Soutenance de Master MathSV}
|
|
\title[Collections de réseaux bipartites]{Détection de structures et
|
|
\emph{clustering} dans des réseaux bipartites}
|
|
\author[L. Lacoste]{Louis \textsc{Lacoste}, encadré par Pierre Barbillon et
|
|
Sophie Donnet} % Sous la supervision de Pierre
|
|
\date{29 août 2024}
|
|
|
|
\begin{document}
|
|
|
|
% titre
|
|
\begin{frame}[noframenumbering,plain]
|
|
\maketitle
|
|
\end{frame}
|
|
|
|
\begin{refsection}
|
|
\include{principal}
|
|
|
|
\renewcommand{\pgfuseimage}[1]{\scalebox{.75}{\includegraphics{#1}}}
|
|
\begin{frame}[noframenumbering,plain,allowframebreaks]
|
|
\frametitle{Bibliographie}
|
|
\printbibliography
|
|
\end{frame}
|
|
\end{refsection}
|
|
|
|
\appendix
|
|
|
|
\begin{refsection}
|
|
\include{annexe}
|
|
\renewcommand{\pgfuseimage}[1]{\scalebox{.75}{\includegraphics{#1}}}
|
|
\begin{frame}[noframenumbering,plain,allowframebreaks]
|
|
\frametitle{Bibliographie des annexes}
|
|
\printbibliography
|
|
\end{frame}
|
|
\end{refsection}
|
|
|
|
\end{document} |