Files
Typst-Vorlage/readme.md
2026-03-11 08:07:31 +01:00

47 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Projektarbeit Typst Vorlage
## Dokument bauen
```bash
typst compile main.typ
```
Erzeugt `main.pdf` im gleichen Verzeichnis.
## Watch-Modus (automatische Aktualisierung)
```bash
typst watch main.typ
```
Das PDF wird bei jeder Dateiänderung automatisch neu gebaut. Ideal in Kombination mit einem PDF-Viewer, der Hot-Reload unterstützt.
## Zitationsstil
Der Zitationsstil folgt **DIN 1505-2 (alphanumerisch)**.
- Stildatei: `din-1505-2-alphanumeric.csl`
- Eingebunden in `main.typ` via:
```typst
#bibliography("refs.bib", title: "Literatur", style: "din-1505-2-alphanumeric.csl")
```
- Referenz/Editor: https://editor.citationstyles.org/styleInfo/?styleId=http%3A%2F%2Fwww.zotero.org%2Fstyles%2Fdin-1505-2-alphanumeric
### Literatur hinzufügen
1. Eintrag in `refs.bib` ergänzen (BibTeX-Format)
2. Im Text zitieren mit `@schluessel` oder `@schluessel[S. 12ff.]`
3. Nur tatsächlich zitierte Quellen erscheinen im Literaturverzeichnis
### BibTeX-Beispiel
```bibtex
@book{MeinBuch23,
author = {Max Mustermann},
title = {Titel des Buches},
year = {2023},
publisher = {Verlag},
address = {Stadt},
}
```