tldr/pages/linux/latexmk.md

20 lines
424 B
Markdown
Raw Normal View History

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