Write IP Bericht

This commit is contained in:
Marius Drechsler 2025-05-30 17:01:04 +02:00
commit 1ef5c20317
Signed by: marius
GPG key ID: 56D4131BA3104777
39 changed files with 2040 additions and 0 deletions

28
template/contents.typ Normal file
View file

@ -0,0 +1,28 @@
#import "colour.typ": *
#let contents_page() = {
set text(font: "TUM Neue Helvetica", lang: "de")
// Override the heading function to not make the Contents page affected by heading numbering 0
show heading.where(
level: 1
): it => [
#v(1em)
#text(
size: 24pt,
font: "TUM Neue Helvetica",
it.body
)
#v(1em, weak: true)
]
show outline.entry.where(
level: 1
): it => {
v(1em)
strong(it)
}
outline(indent: auto)
}