Compare commits
No commits in common. "793e31c87a506f476b7489f3ecab2816219dad7b" and "0a34cfe3e7c64b518c66a3cfb209f1c90df15c5b" have entirely different histories.
793e31c87a
...
0a34cfe3e7
18
src/conf.typ
18
src/conf.typ
|
@ -25,7 +25,22 @@
|
||||||
campus: "Eppelheim"
|
campus: "Eppelheim"
|
||||||
),
|
),
|
||||||
supervisor-signature: false,
|
supervisor-signature: false,
|
||||||
authors: ((),()),
|
authors: (
|
||||||
|
(
|
||||||
|
name: "Sven Vogel",
|
||||||
|
course: "TINF19IT1",
|
||||||
|
company: "ABB AG",
|
||||||
|
supervisor: "Benny Goodman",
|
||||||
|
matriculation-number: 123456789
|
||||||
|
),
|
||||||
|
(
|
||||||
|
name: "Kurt Jammer",
|
||||||
|
course: "TINF24AI2",
|
||||||
|
company: "Siemens",
|
||||||
|
supervisor: "Henry Badman",
|
||||||
|
matriculation-number: 478568763
|
||||||
|
),
|
||||||
|
),
|
||||||
// information about thesis
|
// information about thesis
|
||||||
thesis: (
|
thesis: (
|
||||||
title: "Unofficial ABB/DHBW Typst template",
|
title: "Unofficial ABB/DHBW Typst template",
|
||||||
|
@ -87,7 +102,6 @@
|
||||||
|
|
||||||
if type(val) == array {
|
if type(val) == array {
|
||||||
// ignore checking arraay
|
// ignore checking arraay
|
||||||
base.insert(key, update_val)
|
|
||||||
} else if type(val) == dictionary and type(update_val) == dictionary {
|
} else if type(val) == dictionary and type(update_val) == dictionary {
|
||||||
base.insert(key, deep-insert-checked(val, update_val))
|
base.insert(key, deep-insert-checked(val, update_val))
|
||||||
} else if val == none or type(val) == type(update_val) {
|
} else if val == none or type(val) == type(update_val) {
|
||||||
|
|
|
@ -49,17 +49,9 @@
|
||||||
// faculty
|
// faculty
|
||||||
#pad()[
|
#pad()[
|
||||||
#if text.lang == "de" [
|
#if text.lang == "de" [
|
||||||
aus dem Studiengang #config.university.program
|
aus dem Studiengang #config.university.program | #config.university.faculty
|
||||||
] else if text.lang == "en" [
|
] else if text.lang == "en" [
|
||||||
from the course of studies #config.university.program
|
from the course of studies #config.university.program | #config.university.faculty
|
||||||
] else [
|
|
||||||
#context panic("no translation for language: ", text.lang)
|
|
||||||
]
|
|
||||||
|
|
||||||
#if text.lang == "de" [
|
|
||||||
an der Fakultät #config.university.faculty
|
|
||||||
] else if text.lang == "en" [
|
|
||||||
at the faculty of #config.university.faculty
|
|
||||||
] else [
|
] else [
|
||||||
#context panic("no translation for language: ", text.lang)
|
#context panic("no translation for language: ", text.lang)
|
||||||
]
|
]
|
||||||
|
@ -76,19 +68,14 @@
|
||||||
]
|
]
|
||||||
#config.university.name
|
#config.university.name
|
||||||
#linebreak()
|
#linebreak()
|
||||||
#if text.lang == "de" [
|
|
||||||
in
|
|
||||||
] else if text.lang == "en" [
|
|
||||||
in
|
|
||||||
] else [
|
|
||||||
#context panic("no translation for language: ", text.lang)
|
|
||||||
]
|
|
||||||
#config.university.campus
|
#config.university.campus
|
||||||
]
|
]
|
||||||
|
|
||||||
#pad(top: 1.5em)[
|
#pad(top: 1em)[
|
||||||
#let names = ()
|
#let names = ()
|
||||||
|
#for author in config.authors {
|
||||||
|
names.push(author.name)
|
||||||
|
}
|
||||||
#if text.lang == "de" [
|
#if text.lang == "de" [
|
||||||
von
|
von
|
||||||
] else if text.lang == "en" [
|
] else if text.lang == "en" [
|
||||||
|
@ -96,33 +83,70 @@
|
||||||
] else [
|
] else [
|
||||||
#context panic("no translation for language: ", text.lang)
|
#context panic("no translation for language: ", text.lang)
|
||||||
]
|
]
|
||||||
|
#set text(size: 16pt)
|
||||||
#v(1.5em)
|
#grid(columns: 1, row-gutter: 1em, ..names)
|
||||||
|
|
||||||
#let rows = int(config.authors.len() / 3 + 0.5)
|
|
||||||
|
|
||||||
#for i in range(0, rows) {
|
|
||||||
let cols = calc.min(config.authors.len() - i * 3, 3)
|
|
||||||
|
|
||||||
grid(columns: cols, column-gutter: 1.5em, ..config.authors.slice(i * 3, i * 3 + cols).map(author =>
|
|
||||||
grid(columns: 1, row-gutter: 1em,
|
|
||||||
text(size: 1.25em, author.name),
|
|
||||||
text(size: 1em, author.company),
|
|
||||||
text(size: 1em, author.contact),
|
|
||||||
[
|
|
||||||
#str(author.matriculation-number),
|
|
||||||
#author.course
|
|
||||||
]
|
|
||||||
)))
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
|
|
||||||
#set align(bottom)
|
#pad(top: 1em)[
|
||||||
|
|
||||||
#pad(top: 1.5em)[
|
|
||||||
#thesis.timeframe
|
#thesis.timeframe
|
||||||
]
|
]
|
||||||
|
|
||||||
|
#set align(bottom + left)
|
||||||
|
|
||||||
|
#if text.lang == "de" [
|
||||||
|
#grid(
|
||||||
|
columns: 2,
|
||||||
|
column-gutter: 1cm,
|
||||||
|
row-gutter: 0.5cm,
|
||||||
|
align: top + left,
|
||||||
|
stroke: none,
|
||||||
|
[Matrikelnummer, Kurs:],
|
||||||
|
par(
|
||||||
|
leading: 0.5em,
|
||||||
|
for author in config.authors {
|
||||||
|
str(author.matriculation-number) + ", " + author.course
|
||||||
|
linebreak()
|
||||||
|
},
|
||||||
|
),
|
||||||
|
|
||||||
|
[Betrieb, Betreuer:],
|
||||||
|
par(
|
||||||
|
leading: 0.5em,
|
||||||
|
for author in config.authors {
|
||||||
|
author.company + ", " + author.supervisor
|
||||||
|
linebreak()
|
||||||
|
},
|
||||||
|
),
|
||||||
|
)
|
||||||
|
] else if text.lang == "en" [
|
||||||
|
#grid(
|
||||||
|
columns: 2,
|
||||||
|
column-gutter: 1cm,
|
||||||
|
row-gutter: 0.5cm,
|
||||||
|
align: top + left,
|
||||||
|
stroke: none,
|
||||||
|
[Student ID, Course:],
|
||||||
|
par(
|
||||||
|
leading: 0.5em,
|
||||||
|
for author in config.authors {
|
||||||
|
str(author.matriculation-number) + ", " + author.course
|
||||||
|
linebreak()
|
||||||
|
},
|
||||||
|
),
|
||||||
|
|
||||||
|
[Company, Supervisor:],
|
||||||
|
par(
|
||||||
|
leading: 0.5em,
|
||||||
|
for author in config.authors {
|
||||||
|
author.company + ", " + author.supervisor
|
||||||
|
linebreak()
|
||||||
|
},
|
||||||
|
),
|
||||||
|
)
|
||||||
|
] else [
|
||||||
|
#context panic("no translation for language: ", text.lang)
|
||||||
|
]
|
||||||
|
|
||||||
#if config.supervisor-signature {
|
#if config.supervisor-signature {
|
||||||
align(
|
align(
|
||||||
bottom,
|
bottom,
|
||||||
|
|
|
@ -6,23 +6,16 @@
|
||||||
lang: "de",
|
lang: "de",
|
||||||
region: "de",
|
region: "de",
|
||||||
draft: false,
|
draft: false,
|
||||||
authors: (
|
author: (
|
||||||
(
|
name: "Sven Vogel",
|
||||||
name: "Sven Vogel",
|
semester: 4,
|
||||||
course: "TINF19IT1",
|
program: "Informationtechnology",
|
||||||
company: none,
|
course: "TINF19IT1",
|
||||||
supervisor: "Benny Goodman",
|
faculty: "Technik",
|
||||||
matriculation-number: 123456789,
|
university: "DHBW Mannheim",
|
||||||
contact: "sven.vogel123@web.de"
|
company: "ABB AG",
|
||||||
),
|
supervisor: "Benny Goodman",
|
||||||
(
|
matriculation-number: 123456789,
|
||||||
name: "Sven Vogel",
|
|
||||||
course: "TINF19IT1",
|
|
||||||
company: "ABB AG",
|
|
||||||
supervisor: "Benny Goodman",
|
|
||||||
matriculation-number: 123456789,
|
|
||||||
contact: "sven.vogel123@web.de"
|
|
||||||
)
|
|
||||||
),
|
),
|
||||||
thesis: (
|
thesis: (
|
||||||
title: "Unofficial ABB/DHBW Typst template",
|
title: "Unofficial ABB/DHBW Typst template",
|
||||||
|
|
Loading…
Reference in New Issue