1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 10:06:01 +02:00
tldr/pages/linux/latexmk.md

20 lines
424 B
Markdown
Raw Normal View History

2017-07-17 08:09:26 +02:00
# latexmk
> Automated LaTeX document generation.
- Compile a LaTeX file into a PDF file:
2017-07-17 08:09:26 +02:00
`latexmk -pdf {{filename.tex}}`
- Force `latexmk` to generate a document even if there are errors:
2017-07-17 08:09:26 +02:00
`latexmk -f {{filename.tex}}`
- Clean up the current directory from all files generated by `latexmk` except DVI, PostScript and PDF:
2017-07-17 08:09:26 +02:00
`latexmk -c`
- Run `latexmk` with minimal terminal output:
2017-07-17 08:09:26 +02:00
`latexmk -silent {{filename.tex}}`