-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathlivre-python1.tex
More file actions
162 lines (102 loc) · 2.8 KB
/
livre-python1.tex
File metadata and controls
162 lines (102 loc) · 2.8 KB
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
156
157
158
159
160
161
\documentclass[11pt]{report}
%\documentclass[11pt,twoside,openright]{report}
\usepackage[screen]{python}
%\usepackage[print]{python}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Titre + préface + sommaire
\renewcommand{\contentsname}{Sommaire}
% Préface
\pagenumbering{roman}
\import{divers/}{preface_livre_python.tex}
\debutchapitres
\pagenumbering{arabic}
\clearemptydoublepage
%======================================
% Introduction
%======================================
\part{Mise en route}
% 1 - Hello world!
\import{premiers_pas/}{premiers_pas.tex}
% 2 - Tortue (Scratch avec Python)
\import{tortue/}{tortue.tex}
%======================================
% Fondamentaux
%======================================
\part{Fondamentaux}
% 1 - Si-alors
\import{sialors/}{sialors.tex}
% 2 - Fonctions
\import{fonctions/}{fonctions.tex}
% 3 - Tant que - Arithmétique - I
\import{tantque/}{tantque-1.tex}
% 4 - Chaînes de caractères
\import{chaines/}{chaines.tex}
% 5 - Listes I
\import{listes/}{listes-1.tex}
%======================================
% Avancé
%======================================
\part{Notions avancées}
% 1 - Statistique
\import{statistique/}{statistique.tex}
% 2 - Fichiers
\import{fichiers/}{fichiers.tex}
% 3 - Tant que - Arithmétique - II
\import{tantque/}{tantque-2.tex}
% 4 - Binaire I
\import{binaire/}{binaire-1.tex}
% 5 - Listes II
\import{listes/}{listes-2.tex}
% 6 - Binaire II
\import{binaire/}{binaire-2.tex}
%======================================
% Projets
%======================================
\part{Projets}
% 1 - Probabilités
\import{proba/}{proba.tex}
% 2 - Chercher
\import{chercher/}{chercher.tex}
% 3 - Piles
\import{piles/}{piles.tex}
% 4 - Markdown
\import{markdown/}{texte_markdown.tex}
% 5 - L-systèmes
\import{lsysteme/}{lsysteme.tex}
% 6 - Images dynamiques
\import{images/}{images.tex}
% 7 - Jeu de la vie
\import{vie/}{vie.tex}
% 8 - Graphes et combinatoire de Ramsey
\import{ramsey/}{ramsey.tex}
% 9 - Bitcoin
\import{bitcoin/}{bitcoin.tex}
% 10 - Constructionss aléatoires
\import{aleatoire/}{aleatoire.tex}
%======================================
% Codes
%======================================
% \part{Codes}
% Codes de toutes les activités
% \import{code/}{code.tex}
%======================================
% Guide de survie
%======================================
\part{Guides}
% 1 - Python
\import{guide/}{guide-python.tex}
% 2 - Principales fonctions
\import{guide/}{guide-fonctions.tex}
% 2 - Notes et références
\import{guide/}{guide-biblio.tex}
\clearemptydoublepage
%======================================
% Postface et index
%======================================
\import{divers/}{postface_livre_python.tex}
\vfill
\bigskip
\bigskip
\mycenterline{Version 1.03 -- Avril 2019}
\end{document}