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:
parent
0d9a445e2f
commit
6bf26c0e0b
1 changed files with 19 additions and 0 deletions
19
pages/linux/latexmk.md
Normal file
19
pages/linux/latexmk.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue