55 lines
1.4 KiB
Typst
55 lines
1.4 KiB
Typst
#import "@preview/cetz:0.2.2"
|
|
#import "@preview/fletcher:0.5.1"
|
|
#import "@preview/gentle-clues:0.9.0"
|
|
#import "@preview/glossarium:0.4.1": *
|
|
#import "@preview/lovelace:0.3.0"
|
|
#import "@preview/tablex:0.0.8"
|
|
#import "@preview/unify:0.6.0"
|
|
#import "@preview/quill:0.3.0"
|
|
#import "@preview/equate:0.2.0": equate
|
|
#import "@preview/drafting:0.2.0": *
|
|
|
|
|
|
#show: equate.with(breakable: true, sub-numbering: true)
|
|
#set math.equation(numbering: "(1.1)")
|
|
|
|
#show figure.where(
|
|
kind: table
|
|
): set figure.caption(position: top)
|
|
|
|
#import "template/conf.typ": conf
|
|
|
|
#show: make-glossary
|
|
|
|
#set document(title: "Hier der beste Thesis Name", author: "Vorname Nachname")
|
|
|
|
|
|
#show: doc => conf(
|
|
title: "Hier der beste Thesis Name",
|
|
author: "Vorname Nachname",
|
|
chair: "Lehrstuhl für das und das ",
|
|
school: "School so und so",
|
|
degree: "Bachelor of Science (B.Sc.)",
|
|
examiner: "Prof. Dr. wer auch immer",
|
|
supervisor: "M.Sc. Betreuer wer auch immer",
|
|
submitted: "Abgabgedatum hier",
|
|
doc
|
|
)
|
|
#set page(footer: locate(
|
|
loc => if calc.even(loc.page()) {
|
|
align(left, counter(page).display("1"));
|
|
} else {
|
|
align(right, counter(page).display("1"));
|
|
}
|
|
))
|
|
|
|
// Hier einfach
|
|
// #include "content/kapitel.typ"
|
|
#include "content/introduction.typ"
|
|
|
|
#include "glossary.typ"
|
|
|
|
#counter(heading).update(0)
|
|
// Hier kann man bei sytle den Zitiertyp ändern
|
|
#bibliography("bibliography.bib", style: "ieee")
|
|
|