Template for latex
  • TeX 95.3%
  • Makefile 4.7%
Find a file Use this template
2026-04-09 10:12:45 +00:00
.devcontainer add devcontainer config 2026-04-09 12:11:20 +02:00
.gitignore Initial commit 2026-04-09 09:39:46 +00:00
document.tex Basic structure 2026-04-09 11:59:31 +02:00
Makefile Basic structure 2026-04-09 11:59:31 +02:00
README.md Basic structure 2026-04-09 11:59:31 +02:00
references.bib Basic structure 2026-04-09 11:59:31 +02:00
tex-fmt.toml Basic structure 2026-04-09 11:59:31 +02:00

Latex template

Projektstruktur

  • document.tex (Hauptdatei)
  • sections/ (Kapitel)
  • references.bib (Bibliographie)

Bibliographie

Um Einträge hinzuzufügen müssen die Einträge alle der references.bib hinzugefügt werden. Man kann auch mit \cite{} und \parancite{} einzelne Verweise hinzufügen.

Requirements

  • Latex Distribution miktex oder tex live
  • latexmk
  • tex-fmt
  • make

or

  • devcontainer cli

Build

make build
# or
latexmk -auxdir=aux/ -outdir=out/ -pdf vector-praxisbericht.tex
# or
devcontainer exec make build

Format

make format
# or
tex-fmt -r .\sections\
#or
devcontainer exec make format