-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCM1.tex
155 lines (118 loc) · 4.16 KB
/
CM1.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %%
%% Support de cours Programmation orientée objet %%
%% %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Guillaume Moreau (EC Nantes)
%% création : 21/06/2004
%% dernière modification : 23/06/2004
%% historique :
%% il faut fixer l'URL base pour que les liens relatifs fonctionnent...
%% bizaremment fichu mais c'est comme ça.
\documentclass[allowframebreaks,xcolor=dvipsnames]{beamer}
\mode<presentation>
{
\usetheme{Antibes}
% or ...
%\setbeamercovered{transparent}
% or whatever (possibly just delete it)
}
\useoutertheme{infolines}
\usecolortheme[named=RoyalBlue]{structure}
\uselanguage{french}
\languagepath{french}
\deftranslation[to=french]{definition}{définition}
\deftranslation[to=french]{Definition}{D\'efinition}
\deftranslation[to=french]{example}{exemple}
\deftranslation[to=french]{Example}{Exemple}
\deftranslation[to=french]{algorithm}{algorithme}
\deftranslation[to=french]{Algorithm}{Algorithme}
\setbeamertemplate{blocks}[rounded][shadow=true]
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{itemize item}[square]
\setbeamertemplate{itemize subitem}[triangle]
\usepackage[T1]{fontenc}
% or whatever
\usepackage[french]{babel}
% or whatever
\usepackage{tikz}
\usetikzlibrary{graphs}
\usetikzlibrary{graphdrawing.force}
\usetikzlibrary{arrows}
\usepackage{tikz-network}
%% pour afficher le plan à chaque début de section
%\AtBeginSection[]{
% \begin{frame}{Plan}
% \tiny \tableofcontents[currentsection, hideothersubsections]
% \end{frame}
%}
%% tout ce qui est relatifs aux extraits de code
\usepackage{minted}
\newminted{python}{fontsize=\footnotesize}
\usepackage{myslides}
%% mes styles pour les graphes
\usepackage{graphstyle}
%\usepackage{times}
\usepackage[T1]{fontenc}
% Or whatever. Note that the encoding and the font should match. If T1
% does not look nice, try deleting the line with the fontenc.
\title[Option INFO / MADIS] % (optional, use only with long paper titles)
{Mathématiques discrètes : algorithmique des graphes}
\author[G. Moreau]{Guillaume Moreau\\
\texttt{guillaume.moreau@ec-nantes.fr}}
% - Use the \inst{?} command only if the authors have different
% affiliation.
\institute[Ecole Centrale de Nantes] % (optional, but mostly needed)
{
Ecole Centrale de Nantes
}
\date % (optional)
{Septembre 2020}
\subject{Théorie et algorithmique des graphes}
\definecolor{webgreen}{rgb}{0,.5,0}
\definecolor{webbrown}{rgb}{.6,0,0}
\definecolor{* }{rgb}{0,.5,0}
\definecolor{. }{rgb}{.6,0,0}
% option d'affiche de table des matières : http://mirror.unl.edu/ctan/macros/latex/contrib/beamer/doc/beameruserguide.pdf
% section 10.5
% Delete this, if you do not want the table of contents to pop up at
% the beginning of each subsection:
\AtBeginSection[]
{
\begin{frame}
\frametitle{Plan}
\tableofcontents[sectionstyle=show/hide,subsectionstyle=show/show/hide,subsubsectionstyle=hide/hide]
\end{frame}
}
\AtBeginSubsection[]
{
\begin{frame}
\frametitle{Plan}
\tableofcontents[sectionstyle=show/hide,subsectionstyle=show/shaded/hide,subsubsectionstyle=show/show/hide]
\end{frame}
}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}[allowframebreaks]{Plan du cours}
\tableofcontents[hideallsubsections]
% You might wish to add the option [pausesections]
\end{frame}
% TODO ajouter un index
\section{Introduction}
\input{introduction}
\section{Définitions}
\input{definitions}
\input{representation}
% TODO il manque un élément de plan pour les parcours de graphe
%\input{parcours}
%
\begin{frame}{Quelques références}
\begin{itemize}
\item \href{https://www.hackerearth.com/fr/practice/algorithms/graphs/graph-representation/tutorial/}{HackerEarth}
\item \href{https://caseine.org/course/view.php?id=147}{Cours de Nadia Brauner}, Université Grenoble-Alpes
\item Cours de \href{https://people.irisa.fr/David.Pichardie/}{David Pichardie}, ENS Rennes
\end{itemize}
\end{frame}
\end{document}