Minor fixes

This commit is contained in:
Knoch 2020-06-10 18:23:19 +02:00
parent b616f51c4c
commit 03f84b414f
3 changed files with 14 additions and 20 deletions

View File

@ -6,11 +6,8 @@ Wie funktioniert L<sup style="font-weight: bold; font-size: 73%; margin-left: -.
@slide(layout=content-and-preview) @slide(layout=content-and-preview)
@todo
Überschrift
@title @title
WYSIWaaas?
@content @content
### What You See Is What You Get {data-category=Word} ### What You See Is What You Get {data-category=Word}
@ -47,13 +44,13 @@ Was brauchen wir dazu?
### Editor ### Editor
enthält unseren Quelltext mit allen Befehlen zur semantischen Gliederung enthält unseren Quelltext mit allen Befehlen zur semantischen Gliederung
TeXstudio, TeXMaker [TeXstudio](http://www.texstudio.org/), [TeXMaker](https://www.xm1math.net/texmaker/)
@column-two @column-two
### Compiler ### Compiler
erstellt aus dem Quelltext ein fertig formatiertes PDF-Dokument erstellt aus dem Quelltext ein fertig formatiertes PDF-Dokument
MiKTeX, TeX Live, MacTeX [MiKTeX](http://miktex.org/), [MacTeX](http://tug.org/mactex/), [TeX Live](https://tug.org/texlive/)
@slide(layout=wide-content) @slide(layout=wide-content)

View File

@ -1,16 +1,13 @@
@slide(layout=chapter-slide) @slide(layout=chapter-slide)
@title @title
How does<br/>L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X work? How does <br/>L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X work?
@slide(layout=content-and-preview) @slide(layout=content-and-preview)
@todo
Heading
@title @title
WYSIWhat?
@content @content
### What You See Is What You Get {data-category=Word} ### What You See Is What You Get {data-category=Word}
@ -47,13 +44,13 @@ What do we need?
### Editor ### Editor
provides our source code with all the commands that structure the text semantically provides our source code with all the commands that structure the text semantically
TeXstudio, TeXMaker [TeXstudio](http://www.texstudio.org/), [TeXMaker](https://www.xm1math.net/texmaker/)
@column-two @column-two
### Compiler ### Compiler
takes the source code and creates a PDF document ready for publication takes the source code and creates a PDF document ready for publication
MiKTeX, TeX Live, MacTeX [MiKTeX](http://miktex.org/), [MacTeX](http://tug.org/mactex/), [TeX Live](https://tug.org/texlive/)
@slide(layout=wide-content) @slide(layout=wide-content)

View File

@ -65,7 +65,7 @@ Packages
``` ```
* Packages provide additional commands and functionality. * Packages provide additional commands and functionality.
* There a different packages for different use cases (e.&thinsp;g., formulas, lists, ...). * There are different packages for different use cases (e.&thinsp;g., formulas, lists, ...).
* Before they can be used, they have to be included **within the preamble.** * Before they can be used, they have to be included **within the preamble.**
@ -264,7 +264,7 @@ Front matter
@content @content
``` {.lang-tex .hljs data-source=title.tex} ``` {.lang-tex .hljs data-source=title.tex}
\title{The World of Truffles} \title{The World of Truffles}
\author{Fooboar Rüssel \\\\ Fachschaft WIAI\thanks{WIe AIn Profi}, \author{Fooboar Rüssel \\ Fachschaft WIAI\thanks{WIe AIn Profi},
Otto-Friedrich-Universität Bamberg} Otto-Friedrich-Universität Bamberg}
\date{\today} \date{\today}
\begin{document} \begin{document}
@ -272,11 +272,11 @@ Front matter
\end{document} \end{document}
``` ```
* The values for the entries are stored in the preable. * The values for the entries are stored in the preamble.
* `\maketitle` typesets the front matter within the document environment. * `\maketitle` typesets the front matter within the document environment.
* The exact appearance depends on the document class. * The exact appearance depends on the document class.
* Multiple authors can be joined with `\and`. * Multiple authors can be joined with `\and`.
* If no date is given, the current date. A different date can be defined with `\date{}`. * If no date is given, the current date will be used. A different date can be defined with `\date{}`.
@slide(layout=content-and-preview) @slide(layout=content-and-preview)
@ -289,7 +289,7 @@ Front matter
\documentclass{article} \documentclass{article}
\usepackage{babel} \usepackage{babel}
\title{The World of Truffles} \title{The World of Truffles}
\author{Fooboar Rüssel \\\\ Fachschaft \author{Fooboar Rüssel \\ Fachschaft
WIAI\thanks{WIe AIn Profi}, WIAI\thanks{WIe AIn Profi},
Otto-Friedrich-Universität Bamberg} Otto-Friedrich-Universität Bamberg}
\date{\today} \date{\today}
@ -366,7 +366,7 @@ List of figures and list of tables
\listoftables \listoftables
``` ```
* insert the corresponding index wherever it is called * inserts the corresponding index wherever it is called
* lists the caption of each figure or table by default, but you can also state a special list entry * lists the caption of each figure or table by default, but you can also state a special list entry
@ -391,7 +391,7 @@ Structure your document and text
\usepackage{csquotes} \usepackage{csquotes}
``` ```
* ++In the part that is not commented out, **paragraphs** where marked as `//`. Use real paragraphs instead. * ++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 the corresponding LaTeX commands for all **headings** (`\section` to `\subsubsection`).
* ++Add a **table of contents.** * ++Add a **table of contents.**