mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
17 lines
421 B
Markdown
17 lines
421 B
Markdown
# tex
|
|
|
|
> Kompiliere eine TeX Quelldatei in ein DVI Dokument.
|
|
> Mehr Informationen: <https://www.tug.org/begin.html>.
|
|
|
|
- Kompiliere ein DVI Dokument:
|
|
|
|
`tex {{quelldatei.tex}}`
|
|
|
|
- Kompiliere ein DVI Dokument und gib ein bestimmtes Output-Verzeichnis an:
|
|
|
|
`tex -output-directory={{pfad/zu/verzeichnis}} {{quelldatei.tex}}`
|
|
|
|
- Kompiliere ein DVI Dokument und stoppe bei jedem Fehler:
|
|
|
|
`tex -halt-on-error {{quelldatei.tex}}`
|