2017-07-17 07:09:26 +01:00
|
|
|
# latexmk
|
|
|
|
|
|
|
|
> Automated LaTeX document generation.
|
|
|
|
|
2017-09-07 15:31:13 +01:00
|
|
|
- Compile a LaTeX file into a PDF file:
|
2017-07-17 07:09:26 +01:00
|
|
|
|
|
|
|
`latexmk -pdf {{filename.tex}}`
|
|
|
|
|
2017-09-07 15:31:13 +01:00
|
|
|
- Force `latexmk` to generate a document even if there are errors:
|
2017-07-17 07:09:26 +01:00
|
|
|
|
|
|
|
`latexmk -f {{filename.tex}}`
|
|
|
|
|
2017-09-07 15:31:13 +01:00
|
|
|
- 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`
|
|
|
|
|
2017-09-07 15:31:13 +01:00
|
|
|
- Run `latexmk` with minimal terminal output:
|
2017-07-17 07:09:26 +01:00
|
|
|
|
|
|
|
`latexmk -silent {{filename.tex}}`
|