Skip to content

Commit

Permalink
style: run typstyle formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Servostar committed Nov 11, 2024
1 parent f36b235 commit 5f6ba59
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/lib.typ
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
#import "glossary.typ": glossary
#import "pages/titlepage.typ": new_title_page
#import "pages/declaration-of-authorship.typ": new_declaration_of_authorship
#import "pages/confidentiality-statement.typ": new_confidentiality_statement_page
#import "pages/confidentiality-statement.typ": (
new_confidentiality_statement_page,
)
#import "pages/prerelease-note.typ": new_prerelease_note
#import "pages/outline.typ": new_outline
#import "pages/abstract.typ": new_abstract
Expand Down
8 changes: 6 additions & 2 deletions src/pages/titlepage.typ
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@
stroke: none,
[*Verfasser:*], author.name,
[*Bearbeitungszeitraum:*], thesis.timeframe,
[*Matrikelnummer, Kurs:*], str(author.matriculation-number) + ", " + author.course,
[*Matrikelnummer, Kurs:*],
str(author.matriculation-number) + ", " + author.course,

[*Ausbildungsbetrieb:*], author.company,
[*Betrieblicher Betreuer:*], author.supervisor,
[*Abgabedatum:*], thesis.submission-date,
Expand All @@ -79,7 +81,9 @@
stroke: none,
[*Author:*], author.name,
[*Editing period:*], thesis.timeframe,
[*Matriculation number, course:*], str(author.matriculation-number) + ", " + author.course,
[*Matriculation number, course:*],
str(author.matriculation-number) + ", " + author.course,

[*Training company:*], author.company,
[*Company supervisor:*], author.supervisor,
[*Submission date:*], thesis.submission-date,
Expand Down
2 changes: 1 addition & 1 deletion src/style.typ
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@

show heading: set text(
font: style.heading.font,
weight: "bold"
weight: "bold",
)

let header-supplement = if config.lang == "de" {
Expand Down

0 comments on commit 5f6ba59

Please sign in to comment.