Eine modernisierte Version des offiziellen IFI-Templates für Abschlussarbeiten
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
421 B

3 years ago
  1. \chapter{Implementation}
  2. \label{chap:implementation}
  3. Implementation des ganzen, vielleicht nach einem vorherigen Blick in ein Buch
  4. \parencite[vgl.][49]{martin2018}.
  5. SI-Einheiten können per Befehl geschrieben werden: \SI{43}{\kilo\gram\per\square\metre}
  6. Für code wird Minted genutzt:
  7. \begin{minted}{python}
  8. def add(a: int, b: int) -> int:
  9. """Really not the best addition function"""
  10. return a + b
  11. \end{minted}