blob: aa2c527ff98a98de8411f59446076f42459184ac (
plain)
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
|
{
latex,
make,
...
}:
let
sectionTemplate = section: {
inherit (section) title;
extraHeader = section.extraHeader or "";
content = latex.section section.title section.content;
};
makeSection = path: sectionTemplate (make path { });
in
builtins.map makeSection [
./experience
./education
./research
./service
./languages
]
++ [
{
extraHeader = "";
content = ''
\newpage
'';
}
(makeSection ./bibliography)
]
|