1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 19:35:25 +02:00

latexmk.md: add page (#1428)

This commit is contained in:
Nagiza 2017-07-17 08:09:26 +02:00 committed by Starbeamrainbowlabs
parent 0d9a445e2f
commit 6bf26c0e0b

19
pages/linux/latexmk.md Normal file
View file

@ -0,0 +1,19 @@
# latexmk
> Automated LaTeX document generation.
- Compile filename.tex to pdf:
`latexmk -pdf {{filename.tex}}`
- Force latexmk to generate document despite errors:
`latexmk -f {{filename.tex}}`
- Clean up current directory from files generated by latexmk except; dvi, postscript and pdf:
`latexmk -c`
- Run latexmk with minimal terminal output:
`latexmk -silent {{filename.tex}}`