Compare commits

...

7 Commits

Author SHA1 Message Date
4f908fa34f Add new version of onpoint
All checks were successful
Build Webpage / Render and Deploy to wiai.de (push) Successful in 3m48s
2024-04-01 11:46:50 +02:00
702020d60c Fix typo 2024-04-01 11:33:20 +02:00
3389206df1 Fix coma script abbreviation 2024-04-01 11:26:04 +02:00
c76d207693 Change front matter to title page 2024-04-01 11:22:28 +02:00
a615cbf0fb Add note on backslash 2024-04-01 11:20:03 +02:00
23aa0c8ddc Change reference capitalization and prefix recommendation 2024-04-01 11:15:48 +02:00
386c56903c Fix ambiguity 2024-04-01 11:15:15 +02:00
12 changed files with 385 additions and 399 deletions

@ -1 +1 @@
Subproject commit 8cc875dac8ce14838b81fae25e59b69f3485193f
Subproject commit ac3c4fff4236888e81f86a90a7c84c314af2d70e

View File

@ -313,7 +313,7 @@ Dokumentenklassen
* Natürlich gibt es auch andere Dokumentenklassen als `article`.
* Je nachdem, welche Dokumentenklasse man verwendet, ändert sich das Layout der generierten PDF.
* Die korrekt geschriebenen Dokumentenklassen richten sich nach US-amerikanischen Layout-Normen.
* **`src`**-Dokumentenklassen versuchen europäische Normen abzubilden.
* **`scr`**-Dokumentenklassen versuchen europäische Normen abzubilden.
Folgende Dokumentenklassen stehen zur Verfügung:

View File

@ -186,7 +186,7 @@ Additionally, for some document classes:
@slide(layout=wide-content)
@title
Front matter
Title page
@content
``` {.lang-tex .hljs data-source=title.tex}
@ -199,7 +199,7 @@ Front matter
```
* The values for the entries are stored in the preamble.
* `\maketitle` typesets the front matter within the document environment.
* `\maketitle` typesets the title page within the document environment.
* The exact appearance depends on the document class.
* Multiple authors can be joined with `\and`.
* If no date is given, the current date will be used. A different date can be defined with `\date{}`.
@ -312,7 +312,7 @@ Document classes
* 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.
* **`scr`** document classes usually adhere to European layout norms.
Following document classes are available:

View File

@ -84,7 +84,7 @@ Allgemeiner Aufbau eine Befehls:
Backslash
@content
Den Backslash erzeugt ihr mit folgender Tastenkombination:
Den Backslash erzeugt ihr auf deutschen Tastaturen mit folgender Tastenkombination:
<kbd>AltGr</kbd>&nbsp;+&nbsp;<kbd>ß</kbd>&nbsp;(Windows/Linux)

View File

@ -84,7 +84,7 @@ General structure of a command:
Backslash
@content
You get the backslash by pressing
Assuming a German keyboard layout, you get the backslash by pressing
<kbd>AltGr</kbd>&nbsp;+&nbsp;<kbd>ß</kbd>&nbsp;(Windows/Linux)

View File

@ -16,7 +16,7 @@ Formel-Umgebungen 🧮
$2 \sqrt{\frac{\pi^2}{3} \cdot c_2}$
```
Mathematische Formeln können **nur im sogenannten Mathmode** gesetzt werden, der inline durch zwei Dollarzeichen aktiviert wird. Außerdem gibt es eine Blockumgebung:
Mathematische Formeln können **nur im sogenannten Mathmode** gesetzt werden. Hierfür werden sie durch Dollarzeichen eingerahmt. Außerdem gibt es eine Blockumgebung:
``` {.lang-tex .hljs}
\begin{equation}

View File

@ -93,7 +93,7 @@ Code up the following formulas in the file `exercises/maths/math-formulas.tex`.
| Meaning | Result |
|---------|--------|
| Gravitational acceleration | $9,81\,\frac{m}{s^2}$ |
| Gravitational acceleration | $9.81\,\frac{m}{s^2}$ |
| Formula to solve quadratic equations | $x_{1,2} = - \frac{p}{2} \pm \sqrt{\left(\frac{p}{2}\right)^2 - q}$ |
| Another formula to solve quadratic equations | $x_{1,2} = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$ |
| Catalan numbers | $C_n = \frac{1}{n+1} {2n \choose n} = \frac{(2n)!}{(n+1)!n!}$ |

View File

@ -50,10 +50,10 @@ Mit dem Befehl `\ref`:
\begin{figure}[H]
\includegraphics % …
\caption{Unser Maskottchen Fooboar}
\label{img:fooboar}
\label{fig:fooboar}
\end{figure}
Wie man in Abbildung \ref{img:fooboar} …
Wie man in Abbildung \ref{fig:fooboar} …
```
@preview
@ -72,11 +72,11 @@ Mit dem Paket `cleveref` (mit *einem* r!):
\begin{figure}[H]
\includegraphics % …
\caption{Unser Maskottchen Fooboar}
\label{img:fooboar}
\label{fig:fooboar}
\end{figure}
Fooboar ist ein sehr engagierter
Jungeber (siehe \Cref{img:fooboar}).
Jungeber (siehe \Cref{fig:fooboar}).
```
Der Befehl `\cref` fügt selbstständig die passende Abkürzung ein.

View File

@ -53,11 +53,11 @@ Using the `\ref` command:
\begin{figure}[H]
\includegraphics % …
\caption{Our mascot Fooboar}
\label{img:fooboar}
\label{fig:fooboar}
\end{figure}
As you can see in figure
\ref{img:fooboar}, …
As you can see in Figure
\ref{fig:fooboar}, …
```
@preview
@ -105,11 +105,11 @@ Using the `cleveref` package (with *one* r!):
\begin{figure}[H]
\includegraphics % …
\caption{Our mascot Fooboar}
\label{img:fooboar}
\label{fig:fooboar}
\end{figure}
Fooboar is a young and highly engaged
boar (see \Cref{img:fooboar}).
boar (see \Cref{fig:fooboar}).
```
The `\cref` command automatically inserts suitable prefixes.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 128 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

@ -15,6 +15,6 @@
\label{img:fooboar}
\end{figure}
As you can see in figure \ref{img:fooboar}, fooboar is a young and very engaged boar.
As you can see in Figure \ref{img:fooboar}, fooboar is a young and very engaged boar.
\end{document}