Update cheatsheets

This commit is contained in:
ivuorinen
2024-04-11 00:13:54 +00:00
parent 4226233c3d
commit ce27afb6af
5 changed files with 131 additions and 4 deletions

View File

@@ -15,19 +15,23 @@ source: https://github.com/tldr-pages/tldr.git
- Compile a DVI document from a specific source file:
`latexmk {{source.tex}}`
`latexmk {{path/to/source.tex}}`
- Compile a PDF document:
`latexmk -pdf {{source.tex}}`
`latexmk -pdf {{path/to/source.tex}}`
- Open the document in a viewer and continuously update it whenever source files change:
`latexmk -pvc {{path/to/source.tex}}`
- Force the generation of a document even if there are errors:
`latexmk -f {{source.tex}}`
`latexmk -f {{path/to/source.tex}}`
- Clean up temporary TEX files created for a specific TEX file:
`latexmk -c {{source.tex}}`
`latexmk -c {{path/to/source.tex}}`
- Clean up all temporary TEX files in the current directory: