-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathlivre-python2-print.tex
More file actions
155 lines (101 loc) · 2.82 KB
/
livre-python2-print.tex
File metadata and controls
155 lines (101 loc) · 2.82 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
%\documentclass[11pt]{report}
\documentclass[10pt,twoside,openright]{report}
%\usepackage[screen]{python}
\usepackage[print]{python}
% Pour les symboles d'échec (voir "Sudoku")
\usepackage{skak}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Titre + préface + sommaire
\renewcommand{\contentsname}{Sommaire}
% Préface
\pagenumbering{roman}
\import{divers/}{preface_livre_python.tex}
\debutchapitres
\pagenumbering{arabic}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Les feuilles
\clearemptydoublepage
%======================================
% Mathématiques
%======================================
\part{Mathématiques avec informatique}
% 1 - Suites arithmétiques et géométriques
\import{suites/}{suites.tex}
% 2 - Complexes I
\import{complexes/}{complexes-1.tex}
% 3 - Complexes II
\import{complexes/}{complexes-2.tex}
% 4 - Dérivée - Zéros de fonctions
\import{derivee/}{derivee.tex}
% 5 - Exponentielle
\import{exponentielle/}{exponentielle.tex}
% 6 - Logarithme
\import{logarithme/}{logarithme.tex}
% 7 - Intégrale
\import{integrale/}{integrale.tex}
%======================================
% Informatique
%======================================
\clearemptydoublepage
\part{Informatique avec mathématiques}
% 1 - Programmation objet
\import{objet/}{objet.tex}
% 2 - Mouvement des particules
\import{particule/}{particule.tex}
% 3 - Algorithmes récursifs
\import{recursivite/}{recursivite.tex}
% 4 - Tri - Complexité
\import{tri/}{tri.tex}
% 5 - Calculs en parallèle
\import{parallele/}{parallele.tex}
%======================================
% Projets
%======================================
\clearemptydoublepage
\part{Projets}
% 1 - Automates
\import{automate/}{automate.tex}
% 2 - Cryptographie
\import{cryptographie/}{cryptographie.tex}
% 3 - Le compte est bon
\import{chiffres/}{chiffres.tex}
% 4 - Le mot le plus long
\import{lettres/}{lettres.tex}
% 5 - Images 3D
\import{matrice/}{matrice.tex}
% 6 - Mandelbrot
\import{mandelbrot/}{mandelbrot.tex}
% 7 - Images 3D
\import{images3d/}{images3d.tex}
% 8 - Sudoku
\import{sudoku/}{sudoku.tex}
% 9 - Lyapunov
\import{lyapunov/}{lyapunov.tex}
% 10 - Big data I
\import{bigdata/}{bigdata-1.tex}
% 11 - Big data II
\import{bigdata/}{bigdata-2.tex}
%======================================
% Guides
%======================================
\clearemptydoublepage
\part{Guides}
% 1 - Python
\import{guide/}{guide-python.tex}
% 2 - Principales fonctions
\import{guide/}{guide-fonctions.tex}
% 3 - Notes et références
\import{guide/}{guide-biblio.tex}
\clearemptydoublepage
%======================================
% Postface et index
%======================================
\import{divers/}{postface_livre_python.tex}
\newpage
~
\vfill
\bigskip
\bigskip
\mycenterline{Version 1.00 -- Avril 2019}
\end{document}