52 lines
1.2 KiB
Typst
52 lines
1.2 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)()
|
|
|
|
#set cite(style: "apa")
|
|
#metadata(true) <__thesis_document>
|
|
|
|
#(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_fallstudie.typ"
|
|
#include "Kapitel/04_konzeption_methodisches_vorgehen.typ"
|
|
#include "Kapitel/05_prototypische_umsetzung.typ"
|
|
#include "Kapitel/06_evaluation.typ"
|
|
#include "Kapitel/07_diskussion.typ"
|
|
#include "Kapitel/08_fazit_ausblick.typ"
|
|
#include "Kapitel/09_literaturverzeichnis.typ"
|
|
#include "Kapitel/10_anhang.typ"
|
|
])
|