blob: 8f4a69c62a5010a8ace8008c3d9ae625ba1fc457 (
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
30
31
32
33
34
35
36
37
38
39
40
|
#!/usr/bin/env zsh
gup -u literature.bibtex
cat >$1 <<'EOF'
---
include-before:
- |-
\pagenumbering{gobble}
\pagestyle{empty}
- \input{./cover.tex}
- \input{./title.tex}
- \cleardoublepage
- |-
\pagenumbering{roman}
\pagestyle{plain}
- \input{./abstract.tex}
- \cleardoublepage
- |-
\setcounter{tocdepth}{3}
\tableofcontents
include-after:
- \cleardoublepage
- |-
\pagenumbering{gobble}
\pagestyle{empty}
- \input{./org.tex}
lang: de-de
link-citations: true
bibliography: literature.bibtex
numbersections: true
biblatexoptions:
- style=alphabetic
- citestyle=alphabetic
has-frontmatter: true
biblio-heading: bibintoc
classoption:
- twoside
...
EOF
|