diff options
author | Jonas Smedegaard <dr@jones.dk> | 2024-02-28 09:10:43 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-02-28 09:10:43 +0100 |
commit | 071da538282f79d077d738fe33112ae68425b3ac (patch) | |
tree | 3083db5cf669c8d44ff52a0bd73860b52b3137d6 /_article.yml | |
parent | 0c585bd54a72ee7e30be9818ccab8c9e6e9a9a88 (diff) |
add progression reports
Diffstat (limited to '_article.yml')
-rw-r--r-- | _article.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/_article.yml b/_article.yml new file mode 100644 index 0000000..301b1ca --- /dev/null +++ b/_article.yml @@ -0,0 +1,32 @@ +format: + pdf: + colorlinks: false + pdf-engine: lualatex + documentclass: scrartcl + classoption: + - DIV=calc + csquotes: true + papersize: a4 + + include-in-header: +# recalculate page margins, since mainfont was set after documentclass + - text: | + \KOMAoptions{DIV=last} +# avoid widow or orphan lines + - text: | + \usepackage[defaultlines=4,all]{nowidow} + + include-before-content: +# avoid english style of double space after punctuation + - text: | + \frenchspacing +# setup graph visualization libraries + - text: | + \usepackage{tikz} + \usetikzlibrary{arrows.meta,chains,positioning,shapes.geometric} + \tikzset{ + node distance = 0.75cm and 2cm, font=\bfseries, + >=stealth, + vertex/.style={circle,draw,minimum size=1.5em} + } + \tikzstyle{bag} = [align=center] |