From 42d12f31a95ddb47e7bfdb5ded26d74a5d3fe94d Mon Sep 17 00:00:00 2001 From: Evelyn Fradtschuk Date: Thu, 20 Jan 2022 20:23:43 +0100 Subject: [PATCH] adapt exercises to new script version --- slides/chapter-03.de.md | 5 ++--- slides/chapter-03.en.md | 5 ++--- slides/chapter-08.de.md | 2 +- slides/chapter-08.en.md | 4 ++-- 4 files changed, 7 insertions(+), 9 deletions(-) diff --git a/slides/chapter-03.de.md b/slides/chapter-03.de.md index 35d72b5..33ced5a 100644 --- a/slides/chapter-03.de.md +++ b/slides/chapter-03.de.md @@ -386,12 +386,11 @@ Dokument und Text gliedern \documentclass{scrartcl} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} -\usepackage[ngerman]{babel} -\usepackage[hidelinks]{hyperref} +\usepackage[ngerman]{english} ``` * 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. +* **Kommentiert** zuletzt die Präambel, die Dokumentenumgebung und das Inhaltsverzeichnis **wieder aus**. Nur so kann eure Lösung auch ins Skript eingebunden werden (Schnelles Auskommentieren kann in TeXstudio mit dem Shortcut Ctrl+T erreicht werden). diff --git a/slides/chapter-03.en.md b/slides/chapter-03.en.md index d308e36..2f9d1f3 100644 --- a/slides/chapter-03.en.md +++ b/slides/chapter-03.en.md @@ -386,12 +386,11 @@ Structure your document and text \documentclass{scrartcl} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} -\usepackage[ngerman]{babel} -\usepackage[hidelinks]{hyperref} +\usepackage[english]{babel} ``` * 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. +* 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 (In TeXstudio, comments can be achieved by the shortcut Ctrl+D). diff --git a/slides/chapter-08.de.md b/slides/chapter-08.de.md index f4b7c40..08bd04a 100644 --- a/slides/chapter-08.de.md +++ b/slides/chapter-08.de.md @@ -158,5 +158,5 @@ Die Art der Aufzählung lässt sich über den optionalen Parameter `label` ände 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`. +* Formatiert das Rezept in `lists.tex` im Ordner `exercises/lists` als **ungeordnete Liste** mit den Elementen *Ingredients* und *Instructions*. 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**. diff --git a/slides/chapter-08.en.md b/slides/chapter-08.en.md index a37d824..e67329d 100644 --- a/slides/chapter-08.en.md +++ b/slides/chapter-08.en.md @@ -160,5 +160,5 @@ To accomplish this, we need to include the package `enumitem` first. 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*). +* Turn the recipe in `lists.tex` into an **unordered list** consisting of the elements *Ingredients* and *Instructions*. 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 and a **compact ordered list** for the instructions.