1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 04:02:09 +02:00
tldr/pages/common/latex.md

16 lines
375 B
Markdown

# latex
> Compile a DVI document from LaTeX source files.
> More information: <https://www.latex-project.org>.
- Compile a DVI document:
`latex {{source.tex}}`
- Compile a DVI document, specifying an output directory:
`latex -output-directory={{path/to/directory}} {{source.tex}}`
- Compile a DVI document, exiting on each error:
`latex -halt-on-error {{source.tex}}`