From 5d30dbfc4d34a568dd0c8a17f3adac5c0842fda9 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Thu, 4 Jan 2018 23:32:41 +0530 Subject: [PATCH] latexmk: merge linux/latexmk with common/latexmk (#1861) --- pages/common/latexmk.md | 8 ++++---- pages/linux/latexmk.md | 19 ------------------- 2 files changed, 4 insertions(+), 23 deletions(-) delete mode 100644 pages/linux/latexmk.md diff --git a/pages/common/latexmk.md b/pages/common/latexmk.md index 8167947d6..fe235f4aa 100644 --- a/pages/common/latexmk.md +++ b/pages/common/latexmk.md @@ -15,14 +15,14 @@ `latexmk -pdf {{source.tex}}` -- Clean up all temporary tex files in the folder: +- Force the generation of a document even if there are errors: -`latexmk -c` +`latexmk -f {{source.tex}}` - Clean up temporary tex files created for a specific tex file: `latexmk -c {{source.tex}}` -- Clean up temporary tex and output files: +- Clean up all temporary tex files in the current directory: -`latexmk -C` +`latexmk -c` diff --git a/pages/linux/latexmk.md b/pages/linux/latexmk.md deleted file mode 100644 index fb07bee95..000000000 --- a/pages/linux/latexmk.md +++ /dev/null @@ -1,19 +0,0 @@ -# latexmk - -> Automated LaTeX document generation. - -- Compile a LaTeX file into a PDF file: - -`latexmk -pdf {{filename.tex}}` - -- Force `latexmk` to generate a document even if there are errors: - -`latexmk -f {{filename.tex}}` - -- Clean up the current directory from all files generated by `latexmk` except DVI, PostScript and PDF: - -`latexmk -c` - -- Run `latexmk` with minimal terminal output: - -`latexmk -silent {{filename.tex}}`