feat: setup is pretty done
This commit is contained in:
commit
8c82adbced
|
@ -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
|
||||
```
|
|
@ -0,0 +1,2 @@
|
|||
*
|
||||
!.gitignore
|
Binary file not shown.
|
@ -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.
|
||||
|
||||
|
|
@ -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",
|
||||
}
|
Loading…
Reference in New Issue