-
Notifications
You must be signed in to change notification settings - Fork 2
/
my.typ
78 lines (72 loc) · 1.48 KB
/
my.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
71
72
73
74
75
76
77
78
#import "edt.typ"
#import "typtyp.typ"
#let tt = typtyp
#import "classes.typ"
#import "mpri.typ"
#import "ext.typ"
// Edit this: uncomment exactly the classes you take
#let chosen = tt.ret(tt.array(classes.Class), (
/* === Monday === */
/*-- 8h45 --*/
mpri.proof_asst,
//mpri.automata_mod,
/*-- 12h45 --*/
//mpri.symbolic_dyn,
mpri.advanced_verif,
/*-- 16h15 --*/
mpri.proof_systems,
//mpri.algo_wqo,
mpri.network_mod,
//mpri.biochem_prog,
/* === Tuesday === */
/*-- 8h45 --*/
mpri.sync_sys,
//mpri.sec_protocols,
/*-- 12h45 --*/
//mpri.lang_mod,
//mpri.graph_mining,
//mpri.param_compl,
//mpri.quantum_crypto,
/*-- 16h15 --*/
//mpri.linear_logic,
//mpri.poly_sys,
/* === Wednesday === */
/*-- 8h45 --*/
//mpri.cryptanalysis,
//mpri.error_corr,
mpri.da_networks,
/*-- 12h45 --*/
mpri.fp_and_types,
//mpri.combinatorics,
/*-- 16h15 --*/
//mpri.analysis_algo,
/* === Thursday === */
/*-- 8h45 --*/
//mpri.abstract_interp,
//mpri.search_heuristics,
//mpri.geometric_graphs,
/*-- 12h45 --*/
//mpri.topology,
//mpri.quantum_info,
//mpri.proba_prog,
/*-- 16h15 --*/
//mpri.rand_compl,
//mpri.comp_algebra,
//mpri.graph_theory,
/* === Friday === */
/*-- 8h45 --*/
//mpri.arith_crypto,
mpri.concurrency,
//mpri.uncertainty,
//mpri.proof_of_prog,
/*-- 12h45 --*/
mpri.da_shared,
//mpri.game_theory,
/*-- 16h15 --*/
mpri.categories,
//mpri.algo_verif,
//mpri.data_analysis,
))
#show: doc => [
#edt.conf(classes.merge(mpri.week, ext.week), chosen)
]