Korrekturen Kapitel 1 bis 3
This commit is contained in:
parent
b6c3567201
commit
0bd39def2f
@ -57,7 +57,7 @@ Typography
|
|||||||
@content
|
@content
|
||||||
### Macro typography
|
### Macro typography
|
||||||
* type area
|
* type area
|
||||||
* line length vs. distance
|
* line length and line spacing
|
||||||
* placement of headings in whitespace
|
* placement of headings in whitespace
|
||||||
* placement of images and tables
|
* placement of images and tables
|
||||||
* widows and orphans
|
* widows and orphans
|
||||||
@ -90,7 +90,7 @@ Typography
|
|||||||
<div style="display: flex; justify-content: space-between; align-items: flex-end;">
|
<div style="display: flex; justify-content: space-between; align-items: flex-end;">
|
||||||
<figure><img src="svg/chapter-01/schriftschnitte-crop.svg" style="height: 1.7em;"/><figcaption style="font-size: .8em;">Font styles:<br/>straight, oblique, italic</figcaption></figure>
|
<figure><img src="svg/chapter-01/schriftschnitte-crop.svg" style="height: 1.7em;"/><figcaption style="font-size: .8em;">Font styles:<br/>straight, oblique, italic</figcaption></figure>
|
||||||
|
|
||||||
<figure><img src="svg/chapter-01/schriftgrade.svg" style="height: 2.2em;"/><figcaption style="font-size: .8em">Font sizes:<br/>small, small magnified, large</figcaption></figure>
|
<figure><img src="svg/chapter-01/schriftgrade.svg" style="height: 2.2em;"/><figcaption style="font-size: .8em">Font sizes:<br/>small, small scaled up, large</figcaption></figure>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@preview
|
@preview
|
||||||
@ -103,12 +103,12 @@ Typography
|
|||||||
Further advantages
|
Further advantages
|
||||||
|
|
||||||
@content
|
@content
|
||||||
* much better default settings<br/>than in any word processor
|
* much better default settings<br/>than any other word processor
|
||||||
* structured workflow
|
* structured workflow
|
||||||
* reliable undo
|
* reliable undo
|
||||||
* easy versioning
|
* easy versioning
|
||||||
* independence of proprietary software
|
* independence of proprietary software
|
||||||
* source code and output<br/>readable over the long term
|
* source code and output<br/>readable in the long term
|
||||||
* easy cooperation with other software
|
* easy cooperation with other software
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -42,7 +42,7 @@ Was brauchen wir dazu?
|
|||||||
|
|
||||||
@column-one
|
@column-one
|
||||||
### Editor
|
### 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/)
|
[TeXstudio](http://www.texstudio.org/), [TeXMaker](https://www.xm1math.net/texmaker/)
|
||||||
|
|
||||||
|
|||||||
@ -42,7 +42,7 @@ What do we need?
|
|||||||
|
|
||||||
@column-one
|
@column-one
|
||||||
### Editor
|
### 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/)
|
[TeXstudio](http://www.texstudio.org/), [TeXMaker](https://www.xm1math.net/texmaker/)
|
||||||
|
|
||||||
@ -94,7 +94,7 @@ You get the backslash by pressing
|
|||||||
Optional parameters
|
Optional parameters
|
||||||
|
|
||||||
@content
|
@content
|
||||||
Square brackets can contain different numbers of optional parameters:
|
Square brackets may contain different numbers of optional parameters:
|
||||||
|
|
||||||
``` {.lang-tex .hljs}
|
``` {.lang-tex .hljs}
|
||||||
\usepackage[utf8]{inputenc}
|
\usepackage[utf8]{inputenc}
|
||||||
|
|||||||
@ -64,8 +64,8 @@ Packages
|
|||||||
\usepackage[<options>]{<package_name>}
|
\usepackage[<options>]{<package_name>}
|
||||||
```
|
```
|
||||||
|
|
||||||
* Packages provide additional commands and functionality.
|
* Packages provide additional commands and functionalities.
|
||||||
* There are different packages for different use cases (e. g., formulas, lists, ...).
|
* 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.**
|
* 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 ↲
|
An empty line creates a new paragraph ↲
|
||||||
which has an indentation by default. ↲
|
which has an indentation by default. ↲
|
||||||
Manual line breaks can be forced ↲
|
Manual line breaks can be forced ↲
|
||||||
with two backslashes, ↲
|
using two backslashes, ↲
|
||||||
but normally they have no business \\ ↲
|
but this use \\ ↲
|
||||||
in continuous text.
|
is strongly discouraged.
|
||||||
```
|
```
|
||||||
|
|
||||||
@preview
|
@preview
|
||||||
@ -191,7 +191,7 @@ Some characters do things in LaTeX:
|
|||||||
`# $ % ^ & _ { } ~ \`
|
`# $ % ^ & _ { } ~ \`
|
||||||
|
|
||||||
``` {.lang-tex .hljs}
|
``` {.lang-tex .hljs}
|
||||||
50% is the half.
|
50% is one half.
|
||||||
```
|
```
|
||||||
|
|
||||||
Solution: prefix with ‘`\`’:
|
Solution: prefix with ‘`\`’:
|
||||||
@ -200,7 +200,7 @@ Solution: prefix with ‘`\`’:
|
|||||||
50\% is the half.
|
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
|
@preview
|
||||||

|

|
||||||
@ -321,7 +321,7 @@ Table of contents
|
|||||||
* automatic numbering
|
* automatic numbering
|
||||||
* very configurable (enumeration characters and depth, automatic naming, …)
|
* 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\*{}`.
|
* 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)
|
@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.
|
* ++ 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.**
|
* ++ Add a **table of contents.**
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user