feat: setup is pretty done

This commit is contained in:
Christoph J. Scherr 2024-07-18 11:27:50 +02:00
commit 8c82adbced
5 changed files with 78 additions and 0 deletions

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# Math Exercise and Work for Multivariable Analysis
I failed the god damn exam, so now I have to tryhard and do this properly
## Building
```bash
$ typst watch src/main.typ build/main.pdf
```

2
build/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

BIN
src/main.pdf Normal file

Binary file not shown.

56
src/main.typ Normal file
View File

@ -0,0 +1,56 @@
#import "@preview/charged-ieee:0.1.0": ieee
#show: ieee.with(
title: [Multivariable Analysis an der DHBW weil ich durchgefallen bin (Scheiße)],
authors: (
(
name: "Christoph J. Scherr",
department: [TINF22CS2 (Cybersecurity at DHBW)],
organization: [NewTec GmbH],
location: [Mannheim, Germany],
email: "contact@cscherr,de"
),
),
index-terms: ("Math", "Undergrad"),
bibliography: bibliography("refs.bib"),
)
// // Font size
// #let scriptsize = 7pt
// #let normalsize = 10pt
// #let large = 12pt
// #set text(size: normalsize, lang: "de")
// Justified paragraphs
#set par(justify: true, first-line-indent: 0pt)
// more space between pars
#show par: set block(spacing: 2em)
// Put this here to avoid affecting the title
#show link: underline
//
// Preabmle
///////////////////////////////////////////////////////////////////////////////////////////////////
#outline()
// Content
///////////////////////////////////////////////////////////////////////////////////////////////////
= Einführung
Ich bin dieses Semester durch die verdammte Prüfung durchgefallen (fuck),
also muss ich mir jetzt Zeit nehmen und üben und die Sache ernster nehmen. Ich
brauchte einfach mehr Zeit. Dieses Dokument wird meine Notizen und Lösungen
zu allen Vorlesungen und Übungen enthalten.
Dieses Dokument bezieht sich vorallem auf Vorlesung#cite(<vorlesung>) und Übungen#cite(<exercise>).
= Methoden
Erstmal machen und gucken dann.

11
src/refs.bib Normal file
View File

@ -0,0 +1,11 @@
@mvcollection{vorlesung,
author = "Dr. Nicholas Schreck",
title = "Applied Mathematics - Multivariable analysis (Vorlesung)",
year = "2024",
}
@mvcollection{exercise,
author = "Dr. Nicholas Schreck",
title = "Applied Mathematics - Multivariable analysis (Übungen)",
year = "2024",
}