diff --git a/slides/chapter-02.de.md b/slides/chapter-02.de.md
index 83b5035..daecd95 100644
--- a/slides/chapter-02.de.md
+++ b/slides/chapter-02.de.md
@@ -152,11 +152,11 @@ Bitte installiert **zuerst den Compiler**, also MikTeX (Windows), MacTeX (MacOS)
Erste Schritte im Umgang mit LaTeX
@content
-* ++ Falls nötig: Install now!
-* ++ Ladet euch aus dem VC das Projektarchiv herunter. Entpackt das Archiv.
-* ++ Öffnet die Datei `main.tex` im obersten Verzeichnis in TeXstudio.
-* ++ Navigiert in TeXstudio zu den Befehlseinstellungen: Optionen -> TeXstudio konfigurieren... -> Befehle
-* ++ Ändert den Compiler-Befehl für PdfLaTeX zu: `pdflatex -synctex=1 -interaction=nonstopmode -shell-escape %.tex`
-* ++ Kompiliert die Datei durch Druck auf ⏩.
-* ++ Was ist in dem Ordner passiert, in dem die Datei liegt?
+* Falls nötig: Install now!
+* Ladet euch aus dem VC das Projektarchiv herunter. Entpackt das Archiv.
+* Öffnet die Datei `main.tex` im obersten Verzeichnis in TeXstudio.
+* Navigiert in TeXstudio zu den Befehlseinstellungen: Optionen -> TeXstudio konfigurieren... -> Befehle
+* Ändert den Compiler-Befehl für PdfLaTeX zu: `pdflatex -synctex=1 -interaction=nonstopmode -shell-escape %.tex`
+* Kompiliert die Datei durch Druck auf ⏩.
+* Was ist in dem Ordner passiert, in dem die Datei liegt?
diff --git a/slides/chapter-02.en.md b/slides/chapter-02.en.md
index 174601e..4520ebc 100644
--- a/slides/chapter-02.en.md
+++ b/slides/chapter-02.en.md
@@ -152,11 +152,11 @@ Please install **the compiler first** (MikTeX on Windows, MacTeX on MacOS, TeX L
First steps with LaTeX
@content
-* ++ If necessary: Install now!
-* ++ Download the project archive from the VC. Unzip the archive.
-* ++ Open the file `main.tex` in TeXstudio. It is located in the root directory of the archive.
-* ++ Navigate to the command settings of TeXstudio: Options -> Configure TeXstudio... -> Commands
-* ++ Change the compiler command for PdfLaTeX to: `pdflatex -synctex=1 -interaction=nonstopmode -shell-escape %.tex`
-* ++ Compile `main.tex` by pressing ⏩.
-* ++ What happened to the folder that contains the file?
+* If necessary: Install now!
+* Download the project archive from the VC. Unzip the archive.
+* Open the file `main.tex` in TeXstudio. It is located in the root directory of the archive.
+* Navigate to the command settings of TeXstudio: Options -> Configure TeXstudio... -> Commands
+* Change the compiler command for PdfLaTeX to: `pdflatex -synctex=1 -interaction=nonstopmode -shell-escape %.tex`
+* Compile `main.tex` by pressing ⏩.
+* What happened to the folder that contains the file?
diff --git a/slides/chapter-03.de.md b/slides/chapter-03.de.md
index 1542bc7..52596f4 100644
--- a/slides/chapter-03.de.md
+++ b/slides/chapter-03.de.md
@@ -380,7 +380,7 @@ Dokument und Text gliedern
@content
* Öffnet die Datei `document-structure.tex`, die im Ordner `exercises/basic-document-structure` liegt.
-* ++ Packt den gesamten Text in der Datei in eine **Document**-Umgebung und schreibt darüber folgende **Präambel**. Kompiliert die Datei.
+* Packt den gesamten Text in der Datei in eine **Document**-Umgebung und schreibt darüber folgende **Präambel**. Kompiliert die Datei.
``` {.lang-tex .hljs .fragment}
\documentclass{scrartcl}
@@ -390,8 +390,8 @@ Dokument und Text gliedern
\usepackage[hidelinks]{hyperref}
```
-* ++ Wie ihr sehen könnt, sind in der Datei die Absätze im Dokument mit `\\` erstellt worden. Ersetzt diese durch richtige Absätze.
-* ++ Zeit für etwas Struktur! Verwendet für die **Überschriften** die passenden LaTeX-Befehle (`\section` u. ä.).
-* ++ Fügt anschließend ein **Inhaltsverzeichnis** in euer Dokument ein.
-* ++ **Kommentiert** zuletzt die Präambel, die Dokumentenumgebung und das Inhaltsverzeichnis **wieder aus**. Nur so kann eure Lösung auch ins Skript eingebunden werden.
+* Wie ihr sehen könnt, sind in der Datei die Absätze im Dokument mit `\\` erstellt worden. Ersetzt diese durch richtige Absätze.
+* Zeit für etwas Struktur! Verwendet für die **Überschriften** die passenden LaTeX-Befehle (`\section` u. ä.).
+* Fügt anschließend ein **Inhaltsverzeichnis** in euer Dokument ein.
+* **Kommentiert** zuletzt die Präambel, die Dokumentenumgebung und das Inhaltsverzeichnis **wieder aus**. Nur so kann eure Lösung auch ins Skript eingebunden werden.
diff --git a/slides/chapter-03.en.md b/slides/chapter-03.en.md
index 866baae..92e3544 100644
--- a/slides/chapter-03.en.md
+++ b/slides/chapter-03.en.md
@@ -390,8 +390,8 @@ Structure your document and text
\usepackage[hidelinks]{hyperref}
```
-* ++ As you may already have noticed, **paragraphs** are marked as ‘`\\`’. Use real paragraphs instead.
-* ++ Time to structure our document! Use LaTex commands to declare all **headings** (`\section`, `\subsubsection`, etc.).
-* ++ Add a **table of contents** to your document.
-* ++ Finally, **comment out** the preamble, the document environment, and the table of contents. Only this way, your solution can be embedded in the script itself.
+* As you may already have noticed, **paragraphs** are marked as ‘`\\`’. Use real paragraphs instead.
+* Time to structure our document! Use LaTex commands to declare all **headings** (`\section`, `\subsubsection`, etc.).
+* Add a **table of contents** to your document.
+* Finally, **comment out** the preamble, the document environment, and the table of contents. Only this way, your solution can be embedded in the script itself.
diff --git a/slides/chapter-04.de.md b/slides/chapter-04.de.md
index 0c29015..ae366e6 100644
--- a/slides/chapter-04.de.md
+++ b/slides/chapter-04.de.md
@@ -247,5 +247,5 @@ Ein strukturiertes Projekt
@content
Im Ordner `exercises/project-structure` findet ihr eine Datei namens `main.tex`.
-* ++ Lagert die einzelnen Abschnitte in eigene Dateien `section1.tex`, `section2.tex` und `section3.tex` aus und bindet sie mittels `\include` ein.
-* ++ Welcher Befehl wird durch `\include` überflüssig?
+* Lagert die einzelnen Abschnitte in eigene Dateien `section1.tex`, `section2.tex` und `section3.tex` aus und bindet sie mittels `\include` ein.
+* Welcher Befehl wird durch `\include` überflüssig?
diff --git a/slides/chapter-04.en.md b/slides/chapter-04.en.md
index 09d3f33..ec32e95 100644
--- a/slides/chapter-04.en.md
+++ b/slides/chapter-04.en.md
@@ -249,6 +249,6 @@ A structured project
@content
You will find a file named `main.tex` in the folder `exercises/project-structure`.
-* ++ Extract the sections into their own files (`section1.tex`, `section2.tex`, and `section3.tex`) and insert them using the `\include` command.
-* ++ Which command is rendered superfluous by `\include`?
+* Extract the sections into their own files (`section1.tex`, `section2.tex`, and `section3.tex`) and insert them using the `\include` command.
+* Which command is rendered superfluous by `\include`?
diff --git a/slides/chapter-05.de.md b/slides/chapter-05.de.md
index ab332cf..518e934 100644
--- a/slides/chapter-05.de.md
+++ b/slides/chapter-05.de.md
@@ -357,7 +357,7 @@ Kompiliert von nun an immer die Datei `main.tex`, um eure Änderungen im Skript
* Ersetzt die Leerzeichen innerhalb der Abkürzungen in `exercises/special-characters.tex` durch **schmale Leerzeichen**. Setzt außerdem ein schmales Leerzeichen vor das Wort *Euro*.
-* ++ Ersetzt die Bindestriche bei den Öffnungszeiten der ERBA durch **Halbgeviertstriche**.
-* ++ Setzt beim Wort *Studierendenausweis* eine **ausschließliche Trennstelle** nach *Studierenden-*.
-* ++ Ersetzt das Wort *Euro* durch ein **Euro-Zeichen**.
+* Ersetzt die Bindestriche bei den Öffnungszeiten der ERBA durch **Halbgeviertstriche**.
+* Setzt beim Wort *Studierendenausweis* eine **ausschließliche Trennstelle** nach *Studierenden-*.
+* Ersetzt das Wort *Euro* durch ein **Euro-Zeichen**.
diff --git a/slides/chapter-05.en.md b/slides/chapter-05.en.md
index f4c6195..e92cc59 100644
--- a/slides/chapter-05.en.md
+++ b/slides/chapter-05.en.md
@@ -355,6 +355,6 @@ From now on, compile the file `main.tex` to see your changes appear in the scrip
* Replace the spaces in `exercises/special-characters.tex` within the abbreviations (“z. B.”, “u. a.”) by **thin spaces**. On top of that, replace the space before the word *Euro* by a thin space.
-* ++ Replace the hyphens by a **dash** (`--`).
-* ++ Add an **exclusive hyphenation** in the word *Studierendenausweis* after *Studierenden-*.
-* ++ Replace *Euro* by a **Euro sign**.
+* Replace the hyphens by a **dash** (`--`).
+* Add an **exclusive hyphenation** in the word *Studierendenausweis* after *Studierenden-*.
+* Replace *Euro* by a **Euro sign**.
diff --git a/slides/chapter-06.de.md b/slides/chapter-06.de.md
index d50fbf3..469e18a 100644
--- a/slides/chapter-06.de.md
+++ b/slides/chapter-06.de.md
@@ -193,6 +193,6 @@ Text hervorheben
@content
* **Betont** in der Datei `exercises/text-markup/markup.tex` die Wörter *Rekursion* und *rekursiv* mit `\emph{…}`.
-* ++ Macht die **URL** im Text anklickbar.
-* ++ Probiert euch gerne auch an den anderen Textauszeichnungs-Möglichkeiten, die ihr kennengelernt habt. Löscht diese aber wieder, wenn ihr ein sauberes Dokument haben wollt.
+* Macht die **URL** im Text anklickbar.
+* Probiert euch gerne auch an den anderen Textauszeichnungs-Möglichkeiten, die ihr kennengelernt habt. Löscht diese aber wieder, wenn ihr ein sauberes Dokument haben wollt.
diff --git a/slides/chapter-06.en.md b/slides/chapter-06.en.md
index dd6d7d7..27ff6bd 100644
--- a/slides/chapter-06.en.md
+++ b/slides/chapter-06.en.md
@@ -190,7 +190,7 @@ Emphasising text
@content
* **Emphasise** the words *Rekursion* and *rekursiv* in `exercises/text-markup/markup.tex` using `\emph{…}`.
-* ++ Make the **URL** in the text clickable.
-* ++ Of course, you can also experiment with the other **text markup** possibilities. However, remove them afterwards, if you want to have a clean document.
+* Make the **URL** in the text clickable.
+* Of course, you can also experiment with the other **text markup** possibilities. However, remove them afterwards, if you want to have a clean document.
diff --git a/slides/chapter-08.de.md b/slides/chapter-08.de.md
index acaf34b..f4b7c40 100644
--- a/slides/chapter-08.de.md
+++ b/slides/chapter-08.de.md
@@ -159,4 +159,4 @@ Aufzählungen einfügen
@content
* Formatiert das Rezept in `lists.tex` im Ordner `exercises/lists` als **ungeordnete Liste** mit den Elementen *Zutaten* und *Arbeitsschritte*. Nutzt dafür den Befehl `\itemize`.
-* ++ Benutzt innerhalb dieser Liste für die Zutaten eine **kompakte, ungeordnete Liste** und für die Arbeitsschritte eine **kompakte, geordnete Liste**.
+* Benutzt innerhalb dieser Liste für die Zutaten eine **kompakte, ungeordnete Liste** und für die Arbeitsschritte eine **kompakte, geordnete Liste**.
diff --git a/slides/chapter-08.en.md b/slides/chapter-08.en.md
index fe5bc46..a37d824 100644
--- a/slides/chapter-08.en.md
+++ b/slides/chapter-08.en.md
@@ -161,4 +161,4 @@ Adding enumerations
@content
* Turn the recipe in `lists.tex` into an **unordered list** consisting of the elements *Zutaten* and *Arbeitsschritte*. You can find the file in the directory `exercises/lists`. Use the `itemize` command.
-* ++ Within this list, create a **compact unordered list** for the ingredients (*Zutaten*) and a **compact ordered list** for the instructions (*Arbeitsschritte*).
+* Within this list, create a **compact unordered list** for the ingredients (*Zutaten*) and a **compact ordered list** for the instructions (*Arbeitsschritte*).
diff --git a/slides/chapter-10.de.md b/slides/chapter-10.de.md
index a0891f8..eda23b8 100644
--- a/slides/chapter-10.de.md
+++ b/slides/chapter-10.de.md
@@ -121,11 +121,11 @@ Quelltext einbinden
@content
* Im Ordner `exercises/source-code-listings` findet ihr eine Datei namens `Source.java`. Wir werden diese im Folgenden in unser Dokument einbinden und das Aussehen unseren Wünschen anpassen.
-* ++ **Bindet** den Java-Quelltext in der Datei `source-code-listings.tex` **ein**. (Beachtet, dass der Dateipfad relativ zum Hauptdokument ist, also zu `main.tex`.)
-* ++ Aktiviert das **Syntax-Highlighting** durch Angabe der Sprache Java.
-* ++ Verwendet eine Option, um die Zeilen zu **nummerieren**.
-* ++ Nutzt das **Theme** `native`.
-* ++ Ändert die **Hintergrundfarbe** des Themes zu dunkelblau.
-* ++ Bindet jetzt nur die **Zeilen 5 bis 7** ein.
-* ++ Entfernt die **Leerzeichen** am Anfang der Zeilen durch die passende Option (Tipp: Die Dokumentation spricht hier von `gobble`).
-* ++ Seht bei Fragen in der Dokumentation des Paketes *Minted* nach.
+* **Bindet** den Java-Quelltext in der Datei `source-code-listings.tex` **ein**. (Beachtet, dass der Dateipfad relativ zum Hauptdokument ist, also zu `main.tex`.)
+* Aktiviert das **Syntax-Highlighting** durch Angabe der Sprache Java.
+* Verwendet eine Option, um die Zeilen zu **nummerieren**.
+* Nutzt das **Theme** `native`.
+* Ändert die **Hintergrundfarbe** des Themes zu dunkelblau.
+* Bindet jetzt nur die **Zeilen 5 bis 7** ein.
+* Entfernt die **Leerzeichen** am Anfang der Zeilen durch die passende Option (Tipp: Die Dokumentation spricht hier von `gobble`).
+* Seht bei Fragen in der Dokumentation des Paketes *Minted* nach.
diff --git a/slides/chapter-10.en.md b/slides/chapter-10.en.md
index 12bf3b5..053f160 100644
--- a/slides/chapter-10.en.md
+++ b/slides/chapter-10.en.md
@@ -121,10 +121,10 @@ Listing source code
@content
* In the directory `exercises/source-code-listings` you can find a file named `Source.java`, which we want to include in our document.
-* ++ **Include** the java code in the file `source-code-listings.tex`. (Keep in mind that the file path is relative to the main LaTeX document, i. e., to `main.tex`.)
-* ++ **Number** the code lines.
-* ++ Use the **theme** `native`.
-* ++ Change the **background colour** to dark blue.
-* ++ Now only include **lines 5 to 7**.
-* ++ Delete the **spaces** at the beginning of the lines by using a suitable option (Hint: The documentation speaks of `gobble`).
-* ++ If you have questions, try to consult the documentation of the Minted package.
+* **Include** the java code in the file `source-code-listings.tex`. (Keep in mind that the file path is relative to the main LaTeX document, i. e., to `main.tex`.)
+* **Number** the code lines.
+* Use the **theme** `native`.
+* Change the **background colour** to dark blue.
+* Now only include **lines 5 to 7**.
+* Delete the **spaces** at the beginning of the lines by using a suitable option (Hint: The documentation speaks of `gobble`).
+* If you have questions, try to consult the documentation of the Minted package.
diff --git a/slides/chapter-11.de.md b/slides/chapter-11.de.md
index 883129c..b15a487 100644
--- a/slides/chapter-11.de.md
+++ b/slides/chapter-11.de.md
@@ -104,7 +104,7 @@ Grafiken einfügen
@content
* Im Ordner `exercises/graphics` findet ihr eine Bilddatei namens `latex-logo.png`.
-* ++ Fügt sie **genau** unterhalb dieser Aufgabenstellung im Skript ein.
-* ++ Das Bild soll **zentriert** auf der Seite eingebunden werden.
-* ++ Fügt außerdem eine **Bildunterschrift** ein.
-* ++ Passt die **Größe** des Bildes an Breite der Seite (`\textwidth`) an.
+* Fügt sie **genau** unterhalb dieser Aufgabenstellung im Skript ein.
+* Das Bild soll **zentriert** auf der Seite eingebunden werden.
+* Fügt außerdem eine **Bildunterschrift** ein.
+* Passt die **Größe** des Bildes an Breite der Seite (`\textwidth`) an.
diff --git a/slides/chapter-11.en.md b/slides/chapter-11.en.md
index 25fc4bd..a8c2f29 100644
--- a/slides/chapter-11.en.md
+++ b/slides/chapter-11.en.md
@@ -103,8 +103,8 @@ Alternatively:
Inserting graphics
@content
-* In the directory `exercises/graphics` you can find an image file named `latex-logo.png`.
-* ++ **Include** the figure in `exercises/graphics/graphics.tex`.
-* ++ The image shall be **centered**.
-* ++ Additionally, add a **caption** for the figure.
-* ++ Adapt the **width** of the image to the width of the text (`textwidth`).
+* In the directory `exercises/graphics` you can find an image file named `latex-logo.png`.
+* **Include** the figure in `exercises/graphics/graphics.tex`.
+* The image shall be **centered**.
+* Additionally, add a **caption** for the figure.
+* Adapt the **width** of the image to the width of the text (`textwidth`).
diff --git a/slides/chapter-12.de.md b/slides/chapter-12.de.md
index c66c944..922fab2 100644
--- a/slides/chapter-12.de.md
+++ b/slides/chapter-12.de.md
@@ -223,6 +223,6 @@ Tabellen setzen
@content
* Die Liste in der Datei `exercises/tables/tables.tex` enthält Infos zu ein paar Lehrveranstaltung an der Fakultät WIAI.
-* ++ Wandelt die Liste in eine **Tabelle** um.
-* ++ Die Tabelle soll Spalten für den *Namen*, das *Kürzel* und das *Semester* der Vorlesungen haben.
-* ++ Fügt außerdem eine **zentrierte Spalte** ganz links in der Tabelle hinzu, in der ihr die Lehrveranstaltungen **nummeriert**.
+* Wandelt die Liste in eine **Tabelle** um.
+* Die Tabelle soll Spalten für den *Namen*, das *Kürzel* und das *Semester* der Vorlesungen haben.
+* Fügt außerdem eine **zentrierte Spalte** ganz links in der Tabelle hinzu, in der ihr die Lehrveranstaltungen **nummeriert**.
diff --git a/slides/chapter-12.en.md b/slides/chapter-12.en.md
index a3fe824..7ca5144 100644
--- a/slides/chapter-12.en.md
+++ b/slides/chapter-12.en.md
@@ -223,7 +223,7 @@ Typesetting tables
@content
* The list in file `exercises/tables/tables.tex` stores information on a few modules of the WIAI faculty.
-* ++ Transform the list into a **table**.
-* ++ The table shall have colums for the *name*, the *abbreviation* (Kürzel) and the *semester* of the lectures.
-* ++ Add a **column** with **center-aligned text** on the left side of the table in order to **number** the lectures.
-* ++ Add a **caption** for the table.
+* Transform the list into a **table**.
+* The table shall have colums for the *name*, the *abbreviation* (Kürzel) and the *semester* of the lectures.
+* Add a **column** with **center-aligned text** on the left side of the table in order to **number** the lectures.
+* Add a **caption** for the table.
diff --git a/slides/chapter-13.de.md b/slides/chapter-13.de.md
index 4341b9b..956c68c 100644
--- a/slides/chapter-13.de.md
+++ b/slides/chapter-13.de.md
@@ -202,10 +202,10 @@ Referenzen einfügen
@content
* Ersetzt im Text in der Datei `references.tex` im Ordner `exercises/references` *in der Abbildung* und *Das nachstehende Quelltext-Listing* durch eine **Referenz** auf das Bild bzw. auf das Quelltext-Listing.
-* ++ Nutzt dafür den Befehl `\cref`.
-* ++ Achtet darauf, zuerst **Labels** für die Elemente, die ihr referenzieren wollt, zu vergeben.
-* ++ Packt dafür das Quelltext-Listing in eine **Umgebung** namens `listing`.
-* ++ Fügt noch eine **Beschriftung** zum Listing hinzu.
+* Nutzt dafür den Befehl `\cref`.
+* Achtet darauf, zuerst **Labels** für die Elemente, die ihr referenzieren wollt, zu vergeben.
+* Packt dafür das Quelltext-Listing in eine **Umgebung** namens `listing`.
+* Fügt noch eine **Beschriftung** zum Listing hinzu.
diff --git a/slides/chapter-13.en.md b/slides/chapter-13.en.md
index ee3741c..20d8883 100644
--- a/slides/chapter-13.en.md
+++ b/slides/chapter-13.en.md
@@ -203,7 +203,7 @@ Inserting references
@content
* In file `exercises/references/references.tex`, replace *in der Abbildung* and *Das nachstehende Quelltext-Listing* by **references** to the figure and to the source code listing.
-* ++ Use the command `\cref` for the references.
-* ++ Make sure to add **labels** to the elements that you want to create a reference for.
-* ++ To do so, wrap the source code listing in a `listing` **environment**.
-* ++ Additionally, add a **caption** to the source code listing.
+* Use the command `\cref` for the references.
+* Make sure to add **labels** to the elements that you want to create a reference for.
+* To do so, wrap the source code listing in a `listing` **environment**.
+* Additionally, add a **caption** to the source code listing.
diff --git a/slides/chapter-14.de.md b/slides/chapter-14.de.md
index 016d717..90d6096 100644
--- a/slides/chapter-14.de.md
+++ b/slides/chapter-14.de.md
@@ -108,12 +108,12 @@ Ein Literaturverzeichnis erstellen und einfügen
* Leslie Lamport (1994): $\LaTeX$. A Document Preparation System.
* Dilip Datta (2017): $\LaTeX$ in 24 Hours. A Practical Guide for Scientific Writing.
* Frank Mittelbach / Michel Goossens (2012): Der $\LaTeX$-Begleiter.
-* ++ Vergleicht die Einträge mit den Ergebnissen, die euch dblp.org für dieselben Bücher liefert.
-* ++ Erstellt im Ordner `exercises/literature` eine neue BibTeX-Datei `literature.bib`.
-* ++ Fügt die BibTeX-Einträge in die BibTeX-Datei ein. Wählt hierfür aus
+* Vergleicht die Einträge mit den Ergebnissen, die euch dblp.org für dieselben Bücher liefert.
+* Erstellt im Ordner `exercises/literature` eine neue BibTeX-Datei `literature.bib`.
+* Fügt die BibTeX-Einträge in die BibTeX-Datei ein. Wählt hierfür aus
Google Scholar und dblp die aus eurer Sicht geeigneteren Einträge.
-* ++ Vergebt aussagekräftige BibTeX-Keys.
-* ++ Bindet die BibTeX-Datei an einer geeigneten Stelle ein, an der später auch das Literaturverzeichnis zu sehen sein soll.
-* ++ Zitiert die drei Handbücher im Text in der Datei `exercises/literature/literature.tex`.
-* ++ Wählt den Bibliographiestil `natdin`.
+* Vergebt aussagekräftige BibTeX-Keys.
+* Bindet die BibTeX-Datei an einer geeigneten Stelle ein, an der später auch das Literaturverzeichnis zu sehen sein soll.
+* Zitiert die drei Handbücher im Text in der Datei `exercises/literature/literature.tex`.
+* Wählt den Bibliographiestil `natdin`.
diff --git a/slides/chapter-14.en.md b/slides/chapter-14.en.md
index f7d1c33..0873675 100644
--- a/slides/chapter-14.en.md
+++ b/slides/chapter-14.en.md
@@ -109,10 +109,10 @@ Creating and inserting references
* Leslie Lamport (1994): $\LaTeX$. A Document Preparation System.
* Dilip Datta (2017): $\LaTeX$ in 24 Hours. A Practical Guide for Scientific Writing.
* Frank Mittelbach / Michel Goossens (2012): Der $\LaTeX$-Begleiter.
-* ++ Compare the entries with the results that dblp.org finds for the same titles.
-* ++ Create a new BibTeX file called `literature.bib` in the `exercises/literature` folder.
-* ++ Add the BibTeX entries to the BibTeX file. For this, select your preferred source among Google Scholar and dblp.
-* ++ Assign unique and meaningful BibTeX keys.
-* ++ Include the BibTeX file in a suitable location, where later on the references should be listed.
-* ++ Cite the three handbooks in the file `exercises/literature/literature.tex`.
-* ++ Make use of the `natdin` bibliography style.
+* Compare the entries with the results that dblp.org finds for the same titles.
+* Create a new BibTeX file called `literature.bib` in the `exercises/literature` folder.
+* Add the BibTeX entries to the BibTeX file. For this, select your preferred source among Google Scholar and dblp.
+* Assign unique and meaningful BibTeX keys.
+* Include the BibTeX file in a suitable location, where later on the references should be listed.
+* Cite the three handbooks in the file `exercises/literature/literature.tex`.
+* Make use of the `natdin` bibliography style.