diff --git a/slides/chapter-01.en.md b/slides/chapter-01.en.md
index 49ac470..a4830d6 100644
--- a/slides/chapter-01.en.md
+++ b/slides/chapter-01.en.md
@@ -57,7 +57,7 @@ Typography
@content
### Macro typography
* type area
-* line length vs. distance
+* line length and line spacing
* placement of headings in whitespace
* placement of images and tables
* widows and orphans
@@ -90,7 +90,7 @@ Typography
Font styles: straight, oblique, italic
-
Font sizes: small, small magnified, large
+
Font sizes: small, small scaled up, large
@preview
@@ -103,12 +103,12 @@ Typography
Further advantages
@content
-* much better default settings than in any word processor
+* much better default settings than any other word processor
* structured workflow
* reliable undo
* easy versioning
* independence of proprietary software
-* source code and output readable over the long term
+* source code and output readable in the long term
* easy cooperation with other software
diff --git a/slides/chapter-02.de.md b/slides/chapter-02.de.md
index 5bdffa2..4e68858 100644
--- a/slides/chapter-02.de.md
+++ b/slides/chapter-02.de.md
@@ -42,7 +42,7 @@ Was brauchen wir dazu?
@column-one
### Editor
-enthält unseren Quelltext mit allen Befehlen zur semantischen Gliederung
+zum Schreiben unseres Quelltextes mit allen Befehlen zur semantischen Gliederung
[TeXstudio](http://www.texstudio.org/), [TeXMaker](https://www.xm1math.net/texmaker/)
diff --git a/slides/chapter-02.en.md b/slides/chapter-02.en.md
index f935dbe..b2f2a9b 100644
--- a/slides/chapter-02.en.md
+++ b/slides/chapter-02.en.md
@@ -42,7 +42,7 @@ What do we need?
@column-one
### Editor
-provides our source code with all the commands that structure the text semantically
+writing our source code including all the commands that structure the text semantically
[TeXstudio](http://www.texstudio.org/), [TeXMaker](https://www.xm1math.net/texmaker/)
@@ -94,7 +94,7 @@ You get the backslash by pressing
Optional parameters
@content
-Square brackets can contain different numbers of optional parameters:
+Square brackets may contain different numbers of optional parameters:
``` {.lang-tex .hljs}
\usepackage[utf8]{inputenc}
diff --git a/slides/chapter-03.en.md b/slides/chapter-03.en.md
index 632feab..cb80147 100644
--- a/slides/chapter-03.en.md
+++ b/slides/chapter-03.en.md
@@ -64,8 +64,8 @@ Packages
\usepackage[]{}
```
-* Packages provide additional commands and functionality.
-* There are different packages for different use cases (e. g., formulas, lists, ...).
+* Packages provide additional commands and functionalities.
+* There are different packages for different use cases (e. g., mathematical formulas, lists, ...).
* Before they can be used, they have to be included **within the preamble.**
@@ -168,9 +168,9 @@ just as multiple space characters. ↲
An empty line creates a new paragraph ↲
which has an indentation by default. ↲
Manual line breaks can be forced ↲
-with two backslashes, ↲
-but normally they have no business \\ ↲
-in continuous text.
+using two backslashes, ↲
+but this use \\ ↲
+is strongly discouraged.
```
@preview
@@ -191,7 +191,7 @@ Some characters do things in LaTeX:
`# $ % ^ & _ { } ~ \`
``` {.lang-tex .hljs}
-50% is the half.
+50% is one half.
```
Solution: prefix with ‘`\`’:
@@ -200,7 +200,7 @@ Solution: prefix with ‘`\`’:
50\% is the half.
```
-Does not work with ‘`\\`’, a solution for this is shown later.
+Does not work for ‘`\\`’, we will see a solution for this later.
@preview

@@ -321,7 +321,7 @@ Table of contents
* automatic numbering
* very configurable (enumeration characters and depth, automatic naming, …)
* chapters and (sub-)sections with an asterisk (`*`) are hidden from the table of contents: e. g. `\section\*{}`.
-* better compile twice
+* generally requires two rounds of compilation
@slide(layout=content-and-preview)
@@ -392,6 +392,7 @@ Structure your document and text
```
* ++ In the part that is not commented out, **paragraphs** were marked as ‘`//`’. Use real paragraphs instead.
-* ++ Uncomment the remaining text. Use the corresponding LaTeX commands for all **headings** (`\section` to `\subsubsection`).
+* ++ Uncomment the remaining text.
+* ++ Use LaTeX commands to declare all **headings** (`\section` to `\subsubsection`).
* ++ Add a **table of contents.**
diff --git a/slides/chapter-04.en.md b/slides/chapter-04.en.md
index 67e7be7..3e11b2b 100644
--- a/slides/chapter-04.en.md
+++ b/slides/chapter-04.en.md
@@ -249,8 +249,8 @@ A structured project
@content
* Remove the preamble, both of the `document` lines, and the table of contents from `allgemeines.tex`.
-* ++ Compile `l2kurz.tex` instead—it is going to be our **main file** from now on. The file `allgemeines.tex` is already included and will be compiled automatically.
-* ++ The main file is very complex. Outsource all the commands that come before the document environment (`\begin{document}`) into a new file `preamble.tex` and include it with `\input{preamble}`.
+* ++ Compile `l2kurz.tex` instead. This is going to be our **main file** from now on. The file `allgemeines.tex` is already included and will be compiled automatically.
+* ++ The main file is very complex. Outsource all the commands that come before the document environment (`\begin{document}`) into a new file `preamble.tex` and include it using `\input{preamble}`.
* ++ **Technical note:** When a popup opens during compilation, please choose option “(c) use the default command.”
@@ -264,7 +264,7 @@ A structured project
@content
* To avoid long compilation times, you should should only include the sections `einleitung.tex` and `allgemeines.tex` for now.
-* ++ For this purpose, replace all of the **other** `\input` statements inside `l2kurz.tex` by `\include` statements und then use `\includeonly`.
+* ++ For this purpose, replace all of the **other** `\input` statements inside `l2kurz.tex` by `\include` statements.
+* ++ Place the `\includeonly` statement directly **before** `\begin{document}`.
* ++ **Caution:** The preamble still needs to be included via `\input`.
-* ++ Put the `\includeonly` statement directly above `\begin{document}`.
diff --git a/slides/chapter-14.de.md b/slides/chapter-14.de.md
index a18ff54..d27290e 100644
--- a/slides/chapter-14.de.md
+++ b/slides/chapter-14.de.md
@@ -46,6 +46,7 @@ Durch BibTeX wird LaTeX um einige Befehle zum Zitieren erweitert. Außerdem ben
* ++ Zitieren einer Quelle: `\cite{}`
* ++ Zitieren einer Seite: `\cite[S. 15]{}`
+* ++ Zitieren mit weiteren Zusätzen: `\cite[][]{}`
* ++ Verweis auf die genutzte `.bib`-Datei: `\bibliography{<.bib-datei>}`
* ++ Angabe des genutzten Zitierstils: `\bibliographystyle{}`
diff --git a/slides/chapter-14.en.md b/slides/chapter-14.en.md
index 31fada2..02bdea6 100644
--- a/slides/chapter-14.en.md
+++ b/slides/chapter-14.en.md
@@ -46,6 +46,7 @@ BibTeX adds some citation commands to LaTeX. In addition, we need the `natbib` p
* ++ Citing a source: `\cite{}`
* ++ Citing a page: `\cite[p. 15]{}`
+* ++ Citing with additional text: `\cite[][]{}`
* ++ Referencing the `.bib` file: `\bibliography{<.bib file>}`
* ++ Choosing a citation style: `\bibliographystyle{}`
diff --git a/svg/chapter-14/bibtex-alpha-crop.svg b/svg/chapter-14/bibtex-alpha-crop.svg
index ecb5804..3b9cb5a 100644
--- a/svg/chapter-14/bibtex-alpha-crop.svg
+++ b/svg/chapter-14/bibtex-alpha-crop.svg
@@ -60,7 +60,7 @@
-
+
@@ -69,95 +69,95 @@
-
-
-
-
+
-
+
-
+
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
@@ -317,108 +317,106 @@
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
+
-
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
@@ -437,84 +435,85 @@
-
+
-
+
-
+
-
+
-
+
-
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
@@ -528,32 +527,32 @@
-
-
+
+
-
-
-
+
+
+
-
+
-
+
-
+
@@ -601,22 +600,22 @@
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
@@ -624,52 +623,52 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
@@ -679,52 +678,52 @@
-
+
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -732,30 +731,30 @@
-
-
+
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -764,19 +763,19 @@
-
+
-
+
-
-
+
+
-
+
@@ -881,14 +880,14 @@
-
+
-
+
-
+
@@ -901,7 +900,7 @@
-
+
@@ -911,7 +910,7 @@
-
+
@@ -919,14 +918,14 @@
-
-
+
+
-
+
@@ -934,51 +933,51 @@
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -990,28 +989,28 @@
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
@@ -1034,7 +1033,7 @@
-
+
@@ -1044,7 +1043,7 @@
-
+
@@ -1057,13 +1056,13 @@
-
+
-
-
-
-
+
+
+
+
diff --git a/svg/chapter-14/bibtex-alpha-example-crop.svg b/svg/chapter-14/bibtex-alpha-example-crop.svg
index a12675e..c91bc34 100644
--- a/svg/chapter-14/bibtex-alpha-example-crop.svg
+++ b/svg/chapter-14/bibtex-alpha-example-crop.svg
@@ -63,7 +63,7 @@
-
+
@@ -72,80 +72,80 @@
-
-
-
-
+
-
+
-
+
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
@@ -315,211 +315,192 @@
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
+
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
-
-
-
-
+
+
-
+
-
+
+
+
+
-
-
+
+
+
+
+
+
+
+
-
+
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
+
+
+
+
-
-
-
+
+
+
+
+
+
-
+
+
-
-
-
-
-
-
-
-
+
+
+
-
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
-
-
-
-
-
-
+
+
+
-
-
+
+
+
+
-
-
-
+
+
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
@@ -534,32 +515,32 @@
-
-
+
+
-
-
-
+
+
+
-
+
-
+
-
+
@@ -607,7 +588,7 @@
-
+
@@ -617,8 +598,8 @@
-
-
+
+
@@ -630,7 +611,7 @@
-
+
@@ -641,10 +622,10 @@
-
+
-
+
@@ -653,29 +634,29 @@
-
+
-
+
-
-
-
+
+
+
-
-
+
+
-
+
-
+
@@ -685,40 +666,40 @@
-
+
-
+
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
+
-
+
@@ -733,31 +714,31 @@
-
+
-
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
@@ -774,12 +755,12 @@
-
+
-
-
+
+
@@ -887,14 +868,14 @@
-
+
-
+
@@ -907,7 +888,7 @@
-
+
@@ -917,16 +898,16 @@
-
+
-
+
-
+
@@ -951,26 +932,26 @@
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
@@ -981,7 +962,7 @@
-
+
@@ -1000,13 +981,13 @@
-
-
+
+
-
-
-
-
+
+
+
+
@@ -1019,9 +1000,9 @@
-
+
-
+
@@ -1054,7 +1035,7 @@
-
+
@@ -1067,13 +1048,13 @@
-
+
-
-
-
-
+
+
+
+
diff --git a/svg/chapter-14/bibtex-alpha-example-orig.svg b/svg/chapter-14/bibtex-alpha-example-orig.svg
index f62d848..c39cbad 100644
--- a/svg/chapter-14/bibtex-alpha-example-orig.svg
+++ b/svg/chapter-14/bibtex-alpha-example-orig.svg
@@ -63,7 +63,7 @@
-
+
@@ -72,80 +72,80 @@
-
-
-
-
+
-
+
-
+
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
@@ -315,211 +315,192 @@
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
+
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
-
-
-
-
+
+
-
+
-
+
+
+
+
-
-
+
+
+
+
+
+
+
+
-
+
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
+
+
+
+
-
-
-
+
+
+
+
+
+
-
+
+
-
-
-
-
-
-
-
-
+
+
+
-
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
-
-
-
-
-
-
+
+
+
-
-
+
+
+
+
-
-
-
+
+
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
@@ -534,32 +515,32 @@
-
-
+
+
-
-
-
+
+
+
-
+
-
+
-
+
@@ -607,7 +588,7 @@
-
+
@@ -617,8 +598,8 @@
-
-
+
+
@@ -630,7 +611,7 @@
-
+
@@ -641,10 +622,10 @@
-
+
-
+
@@ -653,29 +634,29 @@
-
+
-
+
-
-
-
+
+
+
-
-
+
+
-
+
-
+
@@ -685,40 +666,40 @@
-
+
-
+
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
+
-
+
@@ -733,31 +714,31 @@
-
+
-
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
@@ -774,12 +755,12 @@
-
+
-
-
+
+
@@ -887,14 +868,14 @@
-
+
-
+
@@ -907,7 +888,7 @@
-
+
@@ -917,16 +898,16 @@
-
+
-
+
-
+
@@ -951,26 +932,26 @@
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
@@ -981,7 +962,7 @@
-
+
@@ -1000,13 +981,13 @@
-
-
+
+
-
-
-
-
+
+
+
+
@@ -1019,9 +1000,9 @@
-
+
-
+
@@ -1054,7 +1035,7 @@
-
+
@@ -1067,13 +1048,13 @@
-
+
-
-
-
-
+
+
+
+
diff --git a/svg/chapter-14/bibtex-alpha-example.blg b/svg/chapter-14/bibtex-alpha-example.blg
index 6f2b635..6725c02 100644
--- a/svg/chapter-14/bibtex-alpha-example.blg
+++ b/svg/chapter-14/bibtex-alpha-example.blg
@@ -1,5 +1,5 @@
-This is BibTeX, Version 0.99d (TeX Live 2020)
-Capacity: max_strings=200000, hash_size=200000, hash_prime=170003
+This is BibTeX, Version 0.99d (TeX Live 2019/Debian)
+Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
The top-level auxiliary file: bibtex-alpha-example.aux
The style file: alpha.bst
Database file #1: collection.bib
diff --git a/svg/chapter-14/bibtex-alpha-example.tex b/svg/chapter-14/bibtex-alpha-example.tex
index a29f222..9189f49 100644
--- a/svg/chapter-14/bibtex-alpha-example.tex
+++ b/svg/chapter-14/bibtex-alpha-example.tex
@@ -6,7 +6,7 @@
\begin{document}
\thispagestyle{empty}
-This text thrives on prominently-placed citations (e.\thinspace g. \cite{Frank1957}) of much more prominent literary works \cite[cf.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
+This text thrives on prominently-placed citations \cite[e.\thinspace g.][]{Frank1957} of much more prominent literary works \cite[cf.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
\bibliographystyle{alpha}
\bibliography{collection}
diff --git a/svg/chapter-14/bibtex-alpha-orig.svg b/svg/chapter-14/bibtex-alpha-orig.svg
index b6a1416..b0a1072 100644
--- a/svg/chapter-14/bibtex-alpha-orig.svg
+++ b/svg/chapter-14/bibtex-alpha-orig.svg
@@ -60,7 +60,7 @@
-
+
@@ -69,95 +69,95 @@
-
-
-
-
+
-
+
-
+
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
@@ -317,108 +317,106 @@
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
+
-
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
@@ -437,84 +435,85 @@
-
+
-
+
-
+
-
+
-
+
-
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+
@@ -528,32 +527,32 @@
-
-
+
+
-
-
-
+
+
+
-
+
-
+
-
+
@@ -601,22 +600,22 @@
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
@@ -624,52 +623,52 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
@@ -679,52 +678,52 @@
-
+
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -732,30 +731,30 @@
-
-
+
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -764,19 +763,19 @@
-
+
-
+
-
-
+
+
-
+
@@ -881,14 +880,14 @@
-
+
-
+
-
+
@@ -901,7 +900,7 @@
-
+
@@ -911,7 +910,7 @@
-
+
@@ -919,14 +918,14 @@
-
-
+
+
-
+
@@ -934,51 +933,51 @@
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -990,28 +989,28 @@
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
@@ -1034,7 +1033,7 @@
-
+
@@ -1044,7 +1043,7 @@
-
+
@@ -1057,13 +1056,13 @@
-
+
-
-
-
-
+
+
+
+
diff --git a/svg/chapter-14/bibtex-alpha.bbl b/svg/chapter-14/bibtex-alpha.bbl
new file mode 100644
index 0000000..482f8b9
--- /dev/null
+++ b/svg/chapter-14/bibtex-alpha.bbl
@@ -0,0 +1,22 @@
+\begin{thebibliography}{Haw88}
+
+\bibitem[Fra57]{Frank1957}
+Anne Frank.
+\newblock {\em Das Tagebuch der Anne Frank}.
+\newblock Fischer-B{\"u}cherei. Fischer ; Fischer, Frankfurt/M. ; Frankfurt/M.,
+ 1957.
+\newblock EST: Het Achterhuis (dt.).
+
+\bibitem[Haw88]{Hawking1988}
+Stephen~W. Hawking.
+\newblock {\em Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
+ Universums}.
+\newblock Rowohlt, Reinbek bei Hamburg, 23.-42. tsd. edition, 1988.
+\newblock 238 S. : Ill., graph. Darst.
+
+\bibitem[Orw57]{Orwell1957}
+George Orwell.
+\newblock {\em 1984}.
+\newblock Diana-Verl., Konstanz, 1957.
+
+\end{thebibliography}
diff --git a/svg/chapter-14/bibtex-alpha.blg b/svg/chapter-14/bibtex-alpha.blg
new file mode 100644
index 0000000..2f77f6d
--- /dev/null
+++ b/svg/chapter-14/bibtex-alpha.blg
@@ -0,0 +1,46 @@
+This is BibTeX, Version 0.99d (TeX Live 2019/Debian)
+Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
+The top-level auxiliary file: bibtex-alpha.aux
+The style file: alpha.bst
+Database file #1: collection.bib
+You've used 3 entries,
+ 2543 wiz_defined-function locations,
+ 582 strings with 4843 characters,
+and the built_in function-call counts, 882 in all, are:
+= -- 82
+> -- 24
+< -- 3
++ -- 6
+- -- 6
+* -- 47
+:= -- 160
+add.period$ -- 12
+call.type$ -- 3
+change.case$ -- 13
+chr.to.int$ -- 3
+cite$ -- 3
+duplicate$ -- 48
+empty$ -- 76
+format.name$ -- 12
+if$ -- 180
+int.to.chr$ -- 1
+int.to.str$ -- 0
+missing$ -- 6
+newline$ -- 20
+num.names$ -- 9
+pop$ -- 19
+preamble$ -- 1
+purify$ -- 18
+quote$ -- 0
+skip$ -- 30
+stack$ -- 0
+substring$ -- 21
+swap$ -- 3
+text.length$ -- 3
+text.prefix$ -- 3
+top$ -- 0
+type$ -- 12
+warning$ -- 0
+while$ -- 6
+width$ -- 5
+write$ -- 47
diff --git a/svg/chapter-14/bibtex-alpha.tex b/svg/chapter-14/bibtex-alpha.tex
index 09d8f5d..9d9c09f 100644
--- a/svg/chapter-14/bibtex-alpha.tex
+++ b/svg/chapter-14/bibtex-alpha.tex
@@ -6,8 +6,8 @@
\begin{document}
\thispagestyle{empty}
-Dieser Text lebt von prominent platzierten Zitaten (u.\thinspace a. \cite{Frank1957}) noch viel prominenterer literarischer Werke \cite[vgl][S. 7]{Orwell1957}, derer \cite{Hawking1988} nur eines ist.
+Dieser Text lebt von prominent platzierten Zitaten \cite[u.\thinspace a.][]{Frank1957} noch viel prominenterer literarischer Werke \cite[vgl.][S. 7]{Orwell1957}, derer \cite{Hawking1988} nur eines ist.
\bibliographystyle{alpha}
\bibliography{collection}
-\end{document}
\ No newline at end of file
+\end{document}
diff --git a/svg/chapter-14/bibtex-apa-crop.svg b/svg/chapter-14/bibtex-apa-crop.svg
index 2f7bf4f..2f06a9e 100644
--- a/svg/chapter-14/bibtex-apa-crop.svg
+++ b/svg/chapter-14/bibtex-apa-crop.svg
@@ -75,58 +75,58 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -311,229 +311,234 @@
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
-
-
-
+
+
-
-
+
+
+
-
+
+
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
+
+
+
+
+
-
-
+
+
+
+
+
-
+
+
-
+
-
-
-
-
+
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
-
-
-
+
+
+
-
-
-
+
-
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
+
-
-
+
+
+
+
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
+
+
-
+
+
+
+
+
-
-
+
+
+
+
+
+
-
-
-
-
-
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -560,19 +565,19 @@
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -623,19 +628,19 @@
-
+
-
+
-
+
-
+
-
+
@@ -646,10 +651,10 @@
-
+
-
+
@@ -662,13 +667,13 @@
-
+
-
+
-
+
@@ -711,29 +716,29 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -742,39 +747,39 @@
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -873,14 +878,14 @@
-
+
-
+
-
+
@@ -903,7 +908,7 @@
-
+
@@ -911,14 +916,14 @@
-
-
+
+
-
+
@@ -926,14 +931,14 @@
-
+
-
+
@@ -946,10 +951,10 @@
-
+
-
+
@@ -962,14 +967,14 @@
-
+
-
+
-
+
@@ -981,15 +986,15 @@
-
+
-
+
-
+
@@ -997,13 +1002,13 @@
-
+
-
-
-
-
+
+
+
+
@@ -1021,7 +1026,7 @@
-
+
@@ -1033,7 +1038,7 @@
-
+
diff --git a/svg/chapter-14/bibtex-apa-example-crop.svg b/svg/chapter-14/bibtex-apa-example-crop.svg
index 0df6473..cb1e6e8 100644
--- a/svg/chapter-14/bibtex-apa-example-crop.svg
+++ b/svg/chapter-14/bibtex-apa-example-crop.svg
@@ -78,34 +78,34 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -309,111 +309,110 @@
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
+
+
-
+
+
-
-
-
+
-
-
+
-
+
+
-
-
-
-
+
-
-
-
-
-
-
-
+
-
-
+
+
+
+
+
-
+
+
-
+
-
+
+
-
+
-
-
-
-
+
+
+
+
@@ -439,7 +438,7 @@
-
+
@@ -450,42 +449,42 @@
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
+
-
+
@@ -498,7 +497,7 @@
-
+
@@ -508,11 +507,11 @@
-
-
+
+
-
+
@@ -556,7 +555,7 @@
-
+
@@ -564,11 +563,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -664,7 +663,7 @@
-
+
@@ -674,8 +673,8 @@
-
-
+
+
@@ -697,8 +696,8 @@
-
-
+
+
@@ -732,7 +731,7 @@
-
+
@@ -741,7 +740,7 @@
-
+
@@ -749,12 +748,12 @@
-
+
-
+
@@ -766,11 +765,11 @@
-
-
+
+
-
+
@@ -869,14 +868,14 @@
-
+
-
+
@@ -905,10 +904,10 @@
-
+
-
+
@@ -952,7 +951,7 @@
-
+
@@ -971,15 +970,15 @@
-
+
-
+
-
+
@@ -987,13 +986,13 @@
-
+
-
-
-
-
+
+
+
+
@@ -1023,7 +1022,7 @@
-
+
diff --git a/svg/chapter-14/bibtex-apa-example-orig.svg b/svg/chapter-14/bibtex-apa-example-orig.svg
index b707a13..dea8b5b 100644
--- a/svg/chapter-14/bibtex-apa-example-orig.svg
+++ b/svg/chapter-14/bibtex-apa-example-orig.svg
@@ -78,34 +78,34 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -309,111 +309,110 @@
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
+
+
-
+
+
-
-
-
+
-
-
+
-
+
+
-
-
-
-
+
-
-
-
-
-
-
-
+
-
-
+
+
+
+
+
-
+
+
-
+
-
+
+
-
+
-
-
-
-
+
+
+
+
@@ -439,7 +438,7 @@
-
+
@@ -450,42 +449,42 @@
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
+
-
+
@@ -498,7 +497,7 @@
-
+
@@ -508,11 +507,11 @@
-
-
+
+
-
+
@@ -556,7 +555,7 @@
-
+
@@ -564,11 +563,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -664,7 +663,7 @@
-
+
@@ -674,8 +673,8 @@
-
-
+
+
@@ -697,8 +696,8 @@
-
-
+
+
@@ -732,7 +731,7 @@
-
+
@@ -741,7 +740,7 @@
-
+
@@ -749,12 +748,12 @@
-
+
-
+
@@ -766,11 +765,11 @@
-
-
+
+
-
+
@@ -869,14 +868,14 @@
-
+
-
+
@@ -905,10 +904,10 @@
-
+
-
+
@@ -952,7 +951,7 @@
-
+
@@ -971,15 +970,15 @@
-
+
-
+
-
+
@@ -987,13 +986,13 @@
-
+
-
-
-
-
+
+
+
+
@@ -1023,7 +1022,7 @@
-
+
diff --git a/svg/chapter-14/bibtex-apa-example.tex b/svg/chapter-14/bibtex-apa-example.tex
index 5c0f3ce..0a3c45a 100644
--- a/svg/chapter-14/bibtex-apa-example.tex
+++ b/svg/chapter-14/bibtex-apa-example.tex
@@ -6,7 +6,7 @@
\begin{document}
\thispagestyle{empty}
-This text thrives on prominently-placed citations (e.\thinspace g. \cite{Frank1957}) of much more prominent literary works \cite[cf.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
+This text thrives on prominently-placed citations \cite[e.\thinspace g.][]{Frank1957} of much more prominent literary works \cite[cf.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
\bibliographystyle{apa}
\bibliography{collection}
diff --git a/svg/chapter-14/bibtex-apa-orig.svg b/svg/chapter-14/bibtex-apa-orig.svg
index e24bd47..92b79c9 100644
--- a/svg/chapter-14/bibtex-apa-orig.svg
+++ b/svg/chapter-14/bibtex-apa-orig.svg
@@ -75,58 +75,58 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -311,229 +311,234 @@
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
-
-
-
+
+
-
-
+
+
+
-
+
+
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
+
+
+
+
+
-
-
+
+
+
+
+
-
+
+
-
+
-
-
-
-
+
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
-
-
-
+
+
+
-
-
-
+
-
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
+
-
-
+
+
+
+
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
+
+
-
+
+
+
+
+
-
-
+
+
+
+
+
+
-
-
-
-
-
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -560,19 +565,19 @@
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -623,19 +628,19 @@
-
+
-
+
-
+
-
+
-
+
@@ -646,10 +651,10 @@
-
+
-
+
@@ -662,13 +667,13 @@
-
+
-
+
-
+
@@ -711,29 +716,29 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -742,39 +747,39 @@
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -873,14 +878,14 @@
-
+
-
+
-
+
@@ -903,7 +908,7 @@
-
+
@@ -911,14 +916,14 @@
-
-
+
+
-
+
@@ -926,14 +931,14 @@
-
+
-
+
@@ -946,10 +951,10 @@
-
+
-
+
@@ -962,14 +967,14 @@
-
+
-
+
-
+
@@ -981,15 +986,15 @@
-
+
-
+
-
+
@@ -997,13 +1002,13 @@
-
+
-
-
-
-
+
+
+
+
@@ -1021,7 +1026,7 @@
-
+
@@ -1033,7 +1038,7 @@
-
+
diff --git a/svg/chapter-14/bibtex-apa.bbl b/svg/chapter-14/bibtex-apa.bbl
new file mode 100644
index 0000000..207f67d
--- /dev/null
+++ b/svg/chapter-14/bibtex-apa.bbl
@@ -0,0 +1,21 @@
+\begin{thebibliography}{}
+
+\bibitem[\protect\astroncite{Frank}{1957}]{Frank1957}
+Frank, A. (1957).
+\newblock {\em Das Tagebuch der Anne Frank}.
+\newblock Fischer-B{\"u}cherei. Fischer ; Fischer, Frankfurt/M. ; Frankfurt/M.
+\newblock EST: Het Achterhuis (dt.).
+
+\bibitem[\protect\astroncite{Hawking}{1988}]{Hawking1988}
+Hawking, S.~W. (1988).
+\newblock {\em Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
+ Universums}.
+\newblock Rowohlt, Reinbek bei Hamburg, 23.-42. tsd. edition.
+\newblock 238 S. : Ill., graph. Darst.
+
+\bibitem[\protect\astroncite{Orwell}{1957}]{Orwell1957}
+Orwell, G. (1957).
+\newblock {\em 1984}.
+\newblock Diana-Verl., Konstanz.
+
+\end{thebibliography}
diff --git a/svg/chapter-14/bibtex-apa.blg b/svg/chapter-14/bibtex-apa.blg
new file mode 100644
index 0000000..5545a46
--- /dev/null
+++ b/svg/chapter-14/bibtex-apa.blg
@@ -0,0 +1,46 @@
+This is BibTeX, Version 0.99d (TeX Live 2019/Debian)
+Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
+The top-level auxiliary file: bibtex-apa.aux
+The style file: apa.bst
+Database file #1: collection.bib
+You've used 3 entries,
+ 1940 wiz_defined-function locations,
+ 497 strings with 4090 characters,
+and the built_in function-call counts, 901 in all, are:
+= -- 88
+> -- 21
+< -- 3
++ -- 6
+- -- 6
+* -- 63
+:= -- 171
+add.period$ -- 12
+call.type$ -- 3
+change.case$ -- 16
+chr.to.int$ -- 3
+cite$ -- 3
+duplicate$ -- 42
+empty$ -- 70
+format.name$ -- 9
+if$ -- 176
+int.to.chr$ -- 1
+int.to.str$ -- 0
+missing$ -- 6
+newline$ -- 20
+num.names$ -- 9
+pop$ -- 16
+preamble$ -- 1
+purify$ -- 18
+quote$ -- 0
+skip$ -- 31
+stack$ -- 0
+substring$ -- 36
+swap$ -- 6
+text.length$ -- 0
+text.prefix$ -- 0
+top$ -- 0
+type$ -- 12
+warning$ -- 0
+while$ -- 6
+width$ -- 0
+write$ -- 47
diff --git a/svg/chapter-14/bibtex-apa.tex b/svg/chapter-14/bibtex-apa.tex
index e77abf8..6fee648 100644
--- a/svg/chapter-14/bibtex-apa.tex
+++ b/svg/chapter-14/bibtex-apa.tex
@@ -6,8 +6,8 @@
\begin{document}
\thispagestyle{empty}
-Dieser Text lebt von prominent platzierten Zitaten (u.\thinspace a. \cite{Frank1957}) noch viel prominenterer literarischer Werke \cite[vgl][S. 7]{Orwell1957}, derer \cite{Hawking1988} nur eines ist.
+Dieser Text lebt von prominent platzierten Zitaten \cite[u.\thinspace a.][]{Frank1957} noch viel prominenterer literarischer Werke \cite[vgl.][S. 7]{Orwell1957}, derer \cite{Hawking1988} nur eines ist.
\bibliographystyle{apa}
\bibliography{collection}
-\end{document}
\ No newline at end of file
+\end{document}
diff --git a/svg/chapter-14/bibtex-natdin-crop.svg b/svg/chapter-14/bibtex-natdin-crop.svg
index 61f8637..063ad70 100644
--- a/svg/chapter-14/bibtex-natdin-crop.svg
+++ b/svg/chapter-14/bibtex-natdin-crop.svg
@@ -75,79 +75,79 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -365,229 +365,234 @@
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
-
-
-
+
+
-
-
+
+
+
-
+
+
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
+
+
+
+
+
-
-
+
+
+
+
+
-
+
+
-
+
-
-
-
-
+
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
-
-
-
+
+
+
-
-
-
+
-
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
+
-
-
+
+
+
+
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
+
+
-
+
+
+
+
+
-
-
+
+
+
+
+
+
-
-
-
-
-
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -601,7 +606,7 @@
-
+
@@ -615,13 +620,13 @@
-
-
-
+
+
+
-
-
+
+
@@ -631,14 +636,14 @@
-
+
-
+
-
+
@@ -692,16 +697,16 @@
-
+
-
-
+
+
-
+
@@ -711,72 +716,72 @@
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -784,29 +789,29 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -815,29 +820,29 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -851,21 +856,21 @@
-
+
-
+
-
+
-
+
-
+
@@ -962,7 +967,7 @@
-
+
@@ -972,7 +977,7 @@
-
+
@@ -996,7 +1001,7 @@
-
+
@@ -1004,30 +1009,30 @@
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
@@ -1035,21 +1040,21 @@
-
+
-
-
+
+
-
-
+
+
-
+
@@ -1058,32 +1063,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1097,10 +1102,10 @@
-
-
+
+
-
+
@@ -1108,11 +1113,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -1125,16 +1130,16 @@
-
+
-
+
-
+
@@ -1158,7 +1163,7 @@
-
+
@@ -1166,7 +1171,7 @@
-
+
@@ -1174,13 +1179,13 @@
-
+
-
-
-
-
+
+
+
+
diff --git a/svg/chapter-14/bibtex-natdin-example-crop.svg b/svg/chapter-14/bibtex-natdin-example-crop.svg
index 8eba06f..11f55e6 100644
--- a/svg/chapter-14/bibtex-natdin-example-crop.svg
+++ b/svg/chapter-14/bibtex-natdin-example-crop.svg
@@ -78,34 +78,34 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -363,111 +363,110 @@
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
+
+
-
+
+
-
-
-
+
-
-
+
-
+
+
-
-
-
-
+
-
-
-
-
-
-
-
+
-
-
+
+
+
+
+
-
+
+
-
+
-
+
+
-
+
-
-
-
-
+
+
+
+
@@ -493,7 +492,7 @@
-
+
@@ -504,42 +503,42 @@
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
+
-
+
@@ -552,7 +551,7 @@
-
+
@@ -562,11 +561,11 @@
-
-
+
+
-
+
@@ -611,10 +610,10 @@
-
-
-
-
+
+
+
+
@@ -625,7 +624,7 @@
-
+
@@ -690,8 +689,8 @@
-
-
+
+
@@ -712,8 +711,8 @@
-
-
+
+
@@ -749,13 +748,13 @@
-
+
-
-
-
-
+
+
+
+
@@ -779,7 +778,7 @@
-
+
@@ -812,7 +811,7 @@
-
+
@@ -823,7 +822,7 @@
-
+
@@ -831,15 +830,15 @@
-
+
-
-
+
+
@@ -856,7 +855,7 @@
-
+
@@ -1009,7 +1008,7 @@
-
+
@@ -1021,7 +1020,7 @@
-
+
@@ -1030,11 +1029,11 @@
-
+
-
-
+
+
@@ -1051,14 +1050,14 @@
-
+
-
+
@@ -1083,7 +1082,7 @@
-
+
@@ -1103,9 +1102,9 @@
-
+
-
+
@@ -1113,10 +1112,10 @@
-
-
-
-
+
+
+
+
@@ -1130,7 +1129,7 @@
-
+
@@ -1179,13 +1178,13 @@
-
+
-
-
-
-
+
+
+
+
diff --git a/svg/chapter-14/bibtex-natdin-example-orig.svg b/svg/chapter-14/bibtex-natdin-example-orig.svg
index 32d9912..d377ec2 100644
--- a/svg/chapter-14/bibtex-natdin-example-orig.svg
+++ b/svg/chapter-14/bibtex-natdin-example-orig.svg
@@ -78,34 +78,34 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -363,111 +363,110 @@
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
+
+
-
+
+
-
-
-
+
-
-
+
-
+
+
-
-
-
-
+
-
-
-
-
-
-
-
+
-
-
+
+
+
+
+
-
+
+
-
+
-
+
+
-
+
-
-
-
-
+
+
+
+
@@ -493,7 +492,7 @@
-
+
@@ -504,42 +503,42 @@
-
+
-
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
+
-
+
@@ -552,7 +551,7 @@
-
+
@@ -562,11 +561,11 @@
-
-
+
+
-
+
@@ -611,10 +610,10 @@
-
-
-
-
+
+
+
+
@@ -625,7 +624,7 @@
-
+
@@ -690,8 +689,8 @@
-
-
+
+
@@ -712,8 +711,8 @@
-
-
+
+
@@ -749,13 +748,13 @@
-
+
-
-
-
-
+
+
+
+
@@ -779,7 +778,7 @@
-
+
@@ -812,7 +811,7 @@
-
+
@@ -823,7 +822,7 @@
-
+
@@ -831,15 +830,15 @@
-
+
-
-
+
+
@@ -856,7 +855,7 @@
-
+
@@ -1009,7 +1008,7 @@
-
+
@@ -1021,7 +1020,7 @@
-
+
@@ -1030,11 +1029,11 @@
-
+
-
-
+
+
@@ -1051,14 +1050,14 @@
-
+
-
+
@@ -1083,7 +1082,7 @@
-
+
@@ -1103,9 +1102,9 @@
-
+
-
+
@@ -1113,10 +1112,10 @@
-
-
-
-
+
+
+
+
@@ -1130,7 +1129,7 @@
-
+
@@ -1179,13 +1178,13 @@
-
+
-
-
-
-
+
+
+
+
diff --git a/svg/chapter-14/bibtex-natdin-example.blg b/svg/chapter-14/bibtex-natdin-example.blg
index 2cf8fa6..c816950 100644
--- a/svg/chapter-14/bibtex-natdin-example.blg
+++ b/svg/chapter-14/bibtex-natdin-example.blg
@@ -1,5 +1,5 @@
-This is BibTeX, Version 0.99d (TeX Live 2020)
-Capacity: max_strings=200000, hash_size=200000, hash_prime=170003
+This is BibTeX, Version 0.99d (TeX Live 2019/Debian)
+Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
The top-level auxiliary file: bibtex-natdin-example.aux
The style file: natdin.bst
Reallocated singl_function (elt_size=4) to 100 items from 50.
diff --git a/svg/chapter-14/bibtex-natdin-example.tex b/svg/chapter-14/bibtex-natdin-example.tex
index 3e1c0bc..f68c704 100644
--- a/svg/chapter-14/bibtex-natdin-example.tex
+++ b/svg/chapter-14/bibtex-natdin-example.tex
@@ -6,7 +6,7 @@
\begin{document}
\thispagestyle{empty}
-This text thrives on prominently-placed citations (e.\thinspace g. \cite{Frank1957}) of much more prominent literary works \cite[cf.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
+This text thrives on prominently-placed citations \cite[e.\thinspace g.][]{Frank1957} of much more prominent literary works \cite[cf.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
\bibliographystyle{natdin}
\bibliography{collection}
diff --git a/svg/chapter-14/bibtex-natdin-orig.svg b/svg/chapter-14/bibtex-natdin-orig.svg
index 5dbac00..1d8fc7f 100644
--- a/svg/chapter-14/bibtex-natdin-orig.svg
+++ b/svg/chapter-14/bibtex-natdin-orig.svg
@@ -75,79 +75,79 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -365,229 +365,234 @@
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
-
-
-
+
+
-
-
+
+
+
-
+
+
+
-
-
-
-
+
+
-
-
-
-
+
-
-
-
+
+
+
+
+
-
-
+
+
+
+
+
-
+
+
-
+
-
-
-
-
+
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
-
-
-
+
+
+
-
-
-
+
-
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
+
-
-
+
+
+
+
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
+
+
-
+
+
+
+
+
-
-
+
+
+
+
+
+
-
-
-
-
-
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -601,7 +606,7 @@
-
+
@@ -615,13 +620,13 @@
-
-
-
+
+
+
-
-
+
+
@@ -631,14 +636,14 @@
-
+
-
+
-
+
@@ -692,16 +697,16 @@
-
+
-
-
+
+
-
+
@@ -711,72 +716,72 @@
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -784,29 +789,29 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -815,29 +820,29 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
@@ -851,21 +856,21 @@
-
+
-
+
-
+
-
+
-
+
@@ -962,7 +967,7 @@
-
+
@@ -972,7 +977,7 @@
-
+
@@ -996,7 +1001,7 @@
-
+
@@ -1004,30 +1009,30 @@
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
@@ -1035,21 +1040,21 @@
-
+
-
-
+
+
-
-
+
+
-
+
@@ -1058,32 +1063,32 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1097,10 +1102,10 @@
-
-
+
+
-
+
@@ -1108,11 +1113,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -1125,16 +1130,16 @@
-
+
-
+
-
+
@@ -1158,7 +1163,7 @@
-
+
@@ -1166,7 +1171,7 @@
-
+
@@ -1174,13 +1179,13 @@
-
+
-
-
-
-
+
+
+
+
diff --git a/svg/chapter-14/bibtex-natdin.bbl b/svg/chapter-14/bibtex-natdin.bbl
new file mode 100644
index 0000000..f6862ae
--- /dev/null
+++ b/svg/chapter-14/bibtex-natdin.bbl
@@ -0,0 +1,36 @@
+\begin{thebibliography}{3}
+
+% this bibliography is generated by nd24.bst [3.0c2] from 2005-12-21
+
+\providecommand{\natexlab}[1]{#1}
+\providecommand{\url}[1]{\texttt{#1}}
+\makeatletter
+\newcommand{\dinatlabel}[1]%
+{\ifNAT@numbers\else\NAT@biblabelnum{#1}\fi}
+\makeatother
+\expandafter\ifx\csname urlstyle\endcsname\relax
+ \providecommand{\doi}[1]{doi: #1}\else
+ \providecommand{\doi}{doi: \begingroup \urlstyle{rm}\Url}\fi
+
+\bibitem[Frank(1957)]{Frank1957}
+\dinatlabel{Frank 1957} \textsc{Frank}, Anne:
+\newblock \emph{Das Tagebuch der Anne Frank}.
+\newblock Frankfurt/M. ; Frankfurt/M. : Fischer ; Fischer, 1957
+ (Fischer-B{\"u}cherei). --
+\newblock EST: Het Achterhuis (dt.)
+
+\bibitem[Hawking(1988)]{Hawking1988}
+\dinatlabel{Hawking 1988} \textsc{Hawking}, Stephen~W.:
+\newblock \emph{Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
+ Universums}.
+\newblock 23.-42. Tsd.
+\newblock Reinbek bei Hamburg : Rowohlt, 1988. --
+\newblock ISBN 3498028847. --
+\newblock 238 S. : Ill., graph. Darst.
+
+\bibitem[Orwell(1957)]{Orwell1957}
+\dinatlabel{Orwell 1957} \textsc{Orwell}, George:
+\newblock \emph{1984}.
+\newblock Konstanz : Diana-Verl., 1957
+
+\end{thebibliography}
diff --git a/svg/chapter-14/bibtex-natdin.blg b/svg/chapter-14/bibtex-natdin.blg
new file mode 100644
index 0000000..1b4f1d1
--- /dev/null
+++ b/svg/chapter-14/bibtex-natdin.blg
@@ -0,0 +1,51 @@
+This is BibTeX, Version 0.99d (TeX Live 2019/Debian)
+Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
+The top-level auxiliary file: bibtex-natdin.aux
+The style file: natdin.bst
+Reallocated singl_function (elt_size=4) to 100 items from 50.
+Reallocated singl_function (elt_size=4) to 100 items from 50.
+Reallocated wiz_functions (elt_size=4) to 6000 items from 3000.
+Reallocated singl_function (elt_size=4) to 100 items from 50.
+Reallocated singl_function (elt_size=4) to 100 items from 50.
+Database file #1: collection.bib
+You've used 3 entries,
+ 4728 wiz_defined-function locations,
+ 907 strings with 6720 characters,
+and the built_in function-call counts, 1562 in all, are:
+= -- 149
+> -- 30
+< -- 30
++ -- 37
+- -- 10
+* -- 104
+:= -- 282
+add.period$ -- 4
+call.type$ -- 3
+change.case$ -- 12
+chr.to.int$ -- 3
+cite$ -- 3
+duplicate$ -- 55
+empty$ -- 134
+format.name$ -- 18
+if$ -- 311
+int.to.chr$ -- 1
+int.to.str$ -- 1
+missing$ -- 12
+newline$ -- 34
+num.names$ -- 12
+pop$ -- 19
+preamble$ -- 1
+purify$ -- 18
+quote$ -- 0
+skip$ -- 78
+stack$ -- 0
+substring$ -- 96
+swap$ -- 7
+text.length$ -- 4
+text.prefix$ -- 0
+top$ -- 0
+type$ -- 24
+warning$ -- 0
+while$ -- 13
+width$ -- 0
+write$ -- 57
diff --git a/svg/chapter-14/bibtex-natdin.tex b/svg/chapter-14/bibtex-natdin.tex
index b805397..fd9dc1d 100644
--- a/svg/chapter-14/bibtex-natdin.tex
+++ b/svg/chapter-14/bibtex-natdin.tex
@@ -6,8 +6,8 @@
\begin{document}
\thispagestyle{empty}
-Dieser Text lebt von prominent platzierten Zitaten (u.\thinspace a. \cite{Frank1957}) noch viel prominenterer literarischer Werke \cite[vgl][S. 7]{Orwell1957}, derer \cite{Hawking1988} nur eines ist.
+Dieser Text lebt von prominent platzierten Zitaten \cite[u.\thinspace a.][]{Frank1957} noch viel prominenterer literarischer Werke \cite[vgl.][S. 7]{Orwell1957}, derer \cite{Hawking1988} nur eines ist.
\bibliographystyle{natdin}
\bibliography{collection}
-\end{document}
\ No newline at end of file
+\end{document}