From fe40a15100739a7e2b537d9b75a8d914ab4a1472 Mon Sep 17 00:00:00 2001 From: "evelyn.fradtschuk" Date: Mon, 3 Oct 2022 21:44:45 +0200 Subject: [PATCH] move document classes to extra --- slides/chapter-03.en.md | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/slides/chapter-03.en.md b/slides/chapter-03.en.md index 03dac31..c7ac5d3 100644 --- a/slides/chapter-03.en.md +++ b/slides/chapter-03.en.md @@ -46,16 +46,9 @@ Document class For example: ``` {.lang-tex .hljs} -\documentclass[10pt,a5paper,landscape]{scrartcl} +\documentclass[10pt,a5paper,landscape]{article} ``` - - @slide(layout=content-only) @@ -310,6 +303,25 @@ Structure your document and text * Add a **table of contents** to your document. +@slide(layout=extra-wide-content) + +@title +Document classes + +@content +* There are also other document classes than `article`. +* Based on the document class, the layout of the generated pdf file changes. +* Normally speled classes adhere to American English layout norms. +* **`src`** document classes usually adhere to European layout norms. + +Following document classes are available: + +* **`scrartcl`, `article`** for short documents +* **`scrreprt`, `report`** for longer documents +* **`scrbook`, `book`** for books +* **`beamer`** for presentations + + @slide(layout=extra-wide-content) @title