1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 09:44:55 +02:00
tldr/pages/common/pdflatex.md
2019-07-15 21:59:47 +02:00

15 lines
333 B
Markdown

# pdflatex
> Compile a pdf document from LaTeX source files.
- Compile a pdf document:
`pdflatex {{source.tex}}`
- Compile a pdf document specifying an output directory:
`pdflatex -output-directory={{path/to/directory}} {{source.tex}}`
- Compile a pdf document, halting on each error:
`pdflatex -halt-on-error {{source.tex}}`