summaryrefslogtreecommitdiff
path: root/tests/typ/compiler
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2024-04-02 16:16:44 +0200
committerGitHub <noreply@github.com>2024-04-02 14:16:44 +0000
commitb3615ccd493c4791c3c7565fc7417cba50e8fd71 (patch)
tree264c711ead8cf76439816b1457429a157e614067 /tests/typ/compiler
parentc4001662b686b0d52e99aa0b72a5b82af6f862fd (diff)
A few CI and crate config changes (#3852)
Diffstat (limited to 'tests/typ/compiler')
-rw-r--r--tests/typ/compiler/bench.typ47
1 files changed, 0 insertions, 47 deletions
diff --git a/tests/typ/compiler/bench.typ b/tests/typ/compiler/bench.typ
deleted file mode 100644
index 7276776d..00000000
--- a/tests/typ/compiler/bench.typ
+++ /dev/null
@@ -1,47 +0,0 @@
-// Ref: false
-
-// Configuration with `page` and `font` functions.
-#set page(width: 450pt, margin: 1cm)
-
-// There are variables and they can take normal values like strings, ...
-#let city = "Berlin"
-
-// ... but also "content" 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 `box` function just places content into a rectangular container. When
-// the only argument to a function is a content block, the parentheses can be
-// omitted (i.e. `f[a]` is the same as `f([a])`).
-#box[
- // Backslash adds a forced line break.
- #university \
- #faculty \
- Sekretariat MA \
- Dr. Max Mustermann \
- Ola Nordmann, John Doe
-]
-#align(right, box[*WiSe 2019/2020* \ Woche 3])
-
-// Adds vertical spacing.
-#v(6mm)
-
-// If the last argument to a function is a content block, 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)