Compare commits

...

2 Commits

Author SHA1 Message Date
Sven Vogel 5f6ba595da style: run typstyle formatter
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 2m57s Details
2024-11-11 14:44:13 +01:00
Sven Vogel f36b23552c feat: add option to remove ABB image (s#62)
Gitea Action for checking typst compilation / run-ci-linux (push) Failing after 2m0s Details
2024-11-11 14:37:16 +01:00
4 changed files with 13 additions and 6 deletions

View File

@ -47,7 +47,8 @@
header: (
content-padding: 1.5em,
underline-top-padding: 0pt,
logo-height: 3em),
logo-height: 3em,
logo-image: "res/ABB.svg"),
footer: (
content-padding: 1.5em),
page: (

View File

@ -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

View File

@ -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,
@ -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,

View File

@ -75,7 +75,7 @@
show heading: set text(
font: style.heading.font,
weight: "bold"
weight: "bold",
)
let header-supplement = if config.lang == "de" {
@ -300,7 +300,7 @@
// we need two, so make both half the page width
columns: (50%, 50%),
// left align logo of ABB
align(left, image("res/ABB.svg", height: style.header.logo-height)),
align(left, image(style.header.logo-image, height: style.header.logo-height)),
// right align logo of DHBW
align(right, image("res/DHBW.svg", height: style.header.logo-height)))