Compare commits
5 Commits
feat/fira-
...
main
Author | SHA1 | Date |
---|---|---|
Sven Vogel | 5f6ba595da | |
Sven Vogel | f36b23552c | |
Sven Vogel | 56f330693d | |
Sven Vogel | 6a4d78ba8b | |
Sven Vogel | 4da04a195c |
|
@ -8,10 +8,6 @@ jobs:
|
|||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Install dependencies for Nix setup action
|
||||
run: |
|
||||
apt update -y
|
||||
apt install sudo -y
|
||||
- name: Setup Nix
|
||||
uses: cachix/install-nix-action@v27
|
||||
with:
|
||||
|
|
|
@ -11,10 +11,6 @@ jobs:
|
|||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Install dependencies for Nix setup action
|
||||
run: |
|
||||
apt update -y
|
||||
apt install sudo -y
|
||||
- name: Setup Nix
|
||||
uses: cachix/install-nix-action@v27
|
||||
with:
|
||||
|
|
|
@ -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: (
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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)))
|
||||
|
||||
|
|
Loading…
Reference in New Issue