-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprobasim.typ
70 lines (45 loc) · 1.3 KB
/
probasim.typ
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
//////////////////////////////////////////////////////////
// SETUP
//////////////////////////////////////////////////////////
#set heading(numbering: "1.")
#set math.equation(numbering: "(1)")
#set page(numbering: "1")
#show link: underline
//////////////////////////////////////////////////////////
// TITLE
//////////////////////////////////////////////////////////
#let title = [
#link("https://github.com/jonatha-anselmi/INFO4-PS")[Probabilité et Simulation]
]
#let subtitle = [
PolyTech INFO4 (Grenoble) – 2024-2025 – Practical Sessions
]
#align(center, text(17pt)[
*#title*
])
#align(center, text(12pt)[
*#subtitle*
])
#let today = datetime.today()
#align(right, [
Last updated: #today.display(). Info: davide.legacci`@`univ-grenoble-alpes.fr
])
//////////////////////////////////////////////////////////
// BODY
//////////////////////////////////////////////////////////
#outline(depth: 1)
#pagebreak()
#include "lesson1.typ"
#include "lesson2.typ"
#include "lesson3.typ"
#include "lesson4.typ"
#include "lesson5.typ"
#include "lesson6.typ"
#include "lesson7.typ"
#include "lesson8.typ"
#include "lesson9.typ"
// #include "useful.typ"
//////////////////////////////////////////////////////////
// BIBLIO
//////////////////////////////////////////////////////////
#bibliography("probasim.bib")