34 lines
894 B
Typst
34 lines
894 B
Typst
#import "template/conf.typ": conf
|
|
#import "@preview/glossarium:0.5.6": *
|
|
|
|
#show: doc => conf(
|
|
title: "Parameteroptimierung für Multi-Input Higher-Order Alphabet Quantization",
|
|
author: "Marius Drechsler",
|
|
chair: "Lehrstuhl für Sicherheit in der Informationstechnik",
|
|
school: "School of Computation, Information and Technology",
|
|
degree: "Ingenieurspraxis",
|
|
examiner: "Dr. Michael Pehl",
|
|
supervisor: "M.Sc. Jonas Ruchti",
|
|
submitted: "30.05.2025",
|
|
doc
|
|
)
|
|
|
|
#set math.equation(
|
|
numbering: "(1)"
|
|
)
|
|
|
|
// Include glossary items and register glossary
|
|
#import "glossary_items.typ": entry-list
|
|
#register-glossary(entry-list)
|
|
|
|
// Include your content here
|
|
#include "content/introduction.typ"
|
|
#include "content/background.typ"
|
|
#include "content/execution.typ"
|
|
#include "content/results.typ"
|
|
|
|
|
|
#show: make-glossary
|
|
#include "glossary.typ"
|
|
|
|
#bibliography("bibliography.bib", style: "ieee")
|