mirror of https://github.com/CrimsonTome/tldr.git
17 lines
446 B
Markdown
17 lines
446 B
Markdown
# pdftex
|
|
|
|
> Kompiliere eine TeX Quelldatei in ein PDF Dokument.
|
|
> Weitere Informationen: <https://www.tug.org/applications/pdftex/>.
|
|
|
|
- Kompiliere ein PDF Dokument:
|
|
|
|
`pdftex {{quelldatei.tex}}`
|
|
|
|
- Kompiliere ein PDF Dokument und gib ein bestimmtes Output-Verzeichnis an:
|
|
|
|
`pdftex -output-directory={{pfad/zu/verzeichnis}} {{quelldatei.tex}}`
|
|
|
|
- Kompiliere ein PDF Dokument und stoppe bei jedem Fehler:
|
|
|
|
`pdftex -halt-on-error {{quelldatei.tex}}`
|