mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-22 19:02:44 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
34
tldr/latexmk
Normal file
34
tldr/latexmk
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# latexmk
|
||||
|
||||
> Compile LaTeX source files into finished documents.
|
||||
> Automatically does multiple runs when needed.
|
||||
> More information: <https://mg.readthedocs.io/latexmk.html>.
|
||||
|
||||
- Compile a DVI (Device Independent file) document from every source:
|
||||
|
||||
`latexmk`
|
||||
|
||||
- Compile a DVI document from a specific source file:
|
||||
|
||||
`latexmk {{source.tex}}`
|
||||
|
||||
- Compile a PDF document:
|
||||
|
||||
`latexmk -pdf {{source.tex}}`
|
||||
|
||||
- Force the generation of a document even if there are errors:
|
||||
|
||||
`latexmk -f {{source.tex}}`
|
||||
|
||||
- Clean up temporary TEX files created for a specific TEX file:
|
||||
|
||||
`latexmk -c {{source.tex}}`
|
||||
|
||||
- Clean up all temporary TEX files in the current directory:
|
||||
|
||||
`latexmk -c`
|
||||
Reference in New Issue
Block a user