commit 8c82adbced0ded53c03a910b51d3fe7d9b69820b Author: Christoph J. Scherr Date: Thu Jul 18 11:27:50 2024 +0200 feat: setup is pretty done diff --git a/README.md b/README.md new file mode 100644 index 0000000..48fc125 --- /dev/null +++ b/README.md @@ -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 +``` diff --git a/build/.gitignore b/build/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/build/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/src/main.pdf b/src/main.pdf new file mode 100644 index 0000000..6348bb7 Binary files /dev/null and b/src/main.pdf differ diff --git a/src/main.typ b/src/main.typ new file mode 100644 index 0000000..617339e --- /dev/null +++ b/src/main.typ @@ -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() und Übungen#cite(). + + += Methoden + +Erstmal machen und gucken dann. + + diff --git a/src/refs.bib b/src/refs.bib new file mode 100644 index 0000000..0e44465 --- /dev/null +++ b/src/refs.bib @@ -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", +}