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
|
#set page(
$if(papersize)$
paper: "$papersize$",
$endif$
numbering: "1"
)
#set par(justify: true)
#set text(
$if(lang)$
lang: "$lang$",
$endif$
$if(mainfont)$
font: "$mainfont$",
$endif$
$if(fontsize)$
size: $fontsize$,
$endif$
)
#set heading(
$if(numbering)$
numbering: "$numbering$"
$endif$
)
#align(center)[#block(inset: 2em)[
#text(weight: "bold", size: 18pt)[$title$] \
$for(author)$
$author$ \
$endfor$
$if(date)$
$date$
$endif$
]]
#let definition(term, ..defs) = [
#strong(term) \
#(defs.pos().join("\n"))
]
#let blockquote(body) = [
#set text( size: 0.92em )
#block(inset: (left: 1.5em, top: 0.2em, bottom: 0.2em))[#body]
]
#let horizontalrule = [
#line(start: (25%,0%), end: (75%,0%))
]
#let endnote(num, contents) = [
#stack(dir: ltr, spacing: 3pt, super[#num], contents)
]
$if(columns)$
#show: doc => columns($columns$, doc)
$endif$
$for(header-includes)$
$header-includes$
$endfor$
$for(include-before)$
$include-before$
$endfor$
$if(toc)$
#outline(
title: auto,
depth: none
);
$endif$
$body$
#v(1em)
#block[
#horizontalrule
#set text(size: .88em)
#v(3pt) // otherwise first note marker is swallowed, bug?
$notes$
]
$if(bibliographystyle)$
#set bibliography(style: "$bibliographystyle$")
$endif$
$for(bibliography)$
#bibliography("$bibliography$")
$endfor$
$for(include-after)$
$include-after$
$endfor$
|