chore: use kebab case consistently

This commit is contained in:
Ansgar Lichter 2025-01-09 18:51:46 +01:00
parent e6bbc33900
commit d15ccc4a15
5 changed files with 25 additions and 25 deletions

View file

@ -9,6 +9,6 @@
#let place-of-work = "ABC"
#let supervisor = "Prof Dr. Max Mustermann"
#let advisor = "Prof Dr. John Doe"
#let startDate = "01.03.2024"
#let start-date = "01.03.2024"
#let submission-date = "31.08.2024"
#let place = "Karlsruhe"

View file

@ -3,14 +3,14 @@
font-body-size: 12pt,
font-figures-subtitle-size: 0.85em,
// At the moment only used on the title page
fontHeading: "New Computer Modern Sans",
font-heading: "New Computer Modern Sans",
font-heading-size: 16pt,
headings-numbering-style: "1.1.",
headings-spacing: (
below: 0.85em,
above: 1.75em
),
citationStyle: "ieee",
citation-style: "ieee",
space-before-paragraph: 24pt,
distance-between-lines: 1em,
list-indentation: 2.5em,

View file

@ -7,7 +7,7 @@
#show: make-glossary
#set document(title: title-english, author: author)
#openTitlePage(settings: settings)
#open-title-page(settings: settings)
// Customize your company logo or just use the one from the university
#grid(
columns: (1fr, 1fr),
@ -19,7 +19,7 @@
]
)
#finishTitlePage(
#finish-title-page(
settings: settings,
degree: degree,
program: program,
@ -30,14 +30,14 @@
place-of-work: place-of-work,
supervisor: supervisor,
advisor: advisor,
startDate: startDate,
start-date: start-date,
submission-date: submission-date,
)
#preface(settings: settings)
// Citations - applied here so that you are able to use a local CSL file to define the citation style
#set cite(style: settings.citationStyle)
#set cite(style: settings.citation-style)
// Statutory Declaration
#include "supplementary/statutoryDeclaration.typ"
@ -53,7 +53,7 @@
#listings(abbreviations: abbreviations)
#show: mainBody.with(
#show: main-body.with(
settings: settings
)