diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-06-10 16:46:01 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-06-10 16:46:01 +0200 |
| commit | 5611c26577c4cf6d52b9b66b7b1a32253aa23ec1 (patch) | |
| tree | b06a64845ef691700aed7fd0ed1e22dd064cc742 /tests/typ/full | |
| parent | bce553a991f19b2b5bb9efef6b74bd12e15a10c6 (diff) | |
Restructure tests
Diffstat (limited to 'tests/typ/full')
| -rw-r--r-- | tests/typ/full/coma.typ | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/tests/typ/full/coma.typ b/tests/typ/full/coma.typ deleted file mode 100644 index 78a703a9..00000000 --- a/tests/typ/full/coma.typ +++ /dev/null @@ -1,49 +0,0 @@ -// Configuration with `page` and `font` functions. -#page(width: 450pt, margins: 1cm) - -// There are variables and they can take normal values like strings, ... -#let city = "Berlin" - -// ... but also "template" values. While these contain markup, -// they are also values and can be summed, stored in arrays etc. -// There are also more standard control flow structures, like #if and #for. -#let university = [*Technische Universität {city}*] -#let faculty = [*Fakultät II, Institut for Mathematik*] - -// The `rect` function just places content into a rectangular container. When -// the only argument to a function is a template, the parentheses can be omitted -// (i.e. `f[a]` is the same as `f([a])`). -#rect[ - // Backslash adds a forced line break. - #university \ - #faculty \ - Sekretariat MA \ - Dr. Max Mustermann \ - Ola Nordmann, John Doe -] -#align(right, rect[*WiSe 2019/2020* \ Woche 3]) - -// Adds vertical spacing. -#v(6mm) - -// If the last argument to a function is a template, we can also place it behind -// the parentheses. -#align(center)[ - // Markdown-like syntax for headings. - #### 3. Übungsblatt Computerorientierte Mathematik II #v(4mm) - *Abgabe: 03.05.2019* (bis 10:10 Uhr in MA 001) #v(4mm) - *Alle Antworten sind zu beweisen.* -] - -*1. Aufgabe* #align(right)[(1 + 1 + 2 Punkte)] - -Ein _Binärbaum_ ist ein Wurzelbaum, in dem jeder Knoten ≤ 2 Kinder hat. -Die Tiefe eines Knotens _v_ ist die Länge des eindeutigen Weges von der Wurzel -zu _v_, und die Höhe von _v_ ist die Länge eines längsten (absteigenden) Weges -von _v_ zu einem Blatt. Die Höhe des Baumes ist die Höhe der Wurzel. - -#v(6mm) - -// The `image` function returns a "template" value of the same type as -// the `[...]` literals. -#align(center, image("../../res/graph.png", width: 75%)) |
