48 lines
1.1 KiB
Typst
48 lines
1.1 KiB
Typst
#import "masterarbeit_style.typ": thesis
|
|
|
|
#let meta = (thesis.meta)(
|
|
"KI-gestütztes Reverse Requirements Engineering bei Legacy-Software",
|
|
"Masterarbeit an der Hochschule Neu-Ulm",
|
|
"Christoph Musterfrau",
|
|
"Master of Science",
|
|
"Prof. Dr. Daniel Schallmo",
|
|
"31. März 2026"
|
|
)
|
|
|
|
#(thesis.cover)(meta)
|
|
|
|
#pagebreak()
|
|
|
|
#(thesis.declaration)(meta)
|
|
|
|
#pagebreak()
|
|
|
|
#(thesis.abstract)([
|
|
#include "Kapitel/00_abstract.typ"
|
|
])
|
|
|
|
#pagebreak()
|
|
|
|
#set heading(numbering: "1.1.1")
|
|
|
|
#(thesis.body_show)()
|
|
|
|
#(thesis.body_content)([
|
|
#set page(numbering: "1")
|
|
#counter(page).update(1)
|
|
#outline(depth: 2, title: "Inhaltsverzeichnis")
|
|
|
|
#pagebreak()
|
|
|
|
#include "Kapitel/00_abstract.typ"
|
|
#include "Kapitel/01_einleitung.typ"
|
|
#include "Kapitel/02_theoretischer_hintergrund.typ"
|
|
#include "Kapitel/03_methodisches_vorgehen.typ"
|
|
#include "Kapitel/04_prototypische_umsetzung.typ"
|
|
#include "Kapitel/05_evaluation.typ"
|
|
#include "Kapitel/06_diskussion.typ"
|
|
#include "Kapitel/07_fazit_ausblick.typ"
|
|
#include "Kapitel/08_literaturverzeichnis.typ"
|
|
#include "Kapitel/09_anhang.typ"
|
|
])
|