From 850ca123f561f58c4da771d2b74753b78c2de6f3 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Thu, 7 Sep 2017 15:31:13 +0100 Subject: [PATCH] latexmk: minor tweaks to descriptions (#1467) --- pages/linux/latexmk.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/linux/latexmk.md b/pages/linux/latexmk.md index e4a2c0514f..fb07bee95c 100644 --- a/pages/linux/latexmk.md +++ b/pages/linux/latexmk.md @@ -2,18 +2,18 @@ > Automated LaTeX document generation. -- Compile filename.tex to pdf: +- Compile a LaTeX file into a PDF file: `latexmk -pdf {{filename.tex}}` -- Force latexmk to generate document despite errors: +- Force `latexmk` to generate a document even if there are errors: `latexmk -f {{filename.tex}}` -- Clean up current directory from files generated by latexmk except; dvi, postscript and pdf: +- Clean up the current directory from all files generated by `latexmk` except DVI, PostScript and PDF: `latexmk -c` -- Run latexmk with minimal terminal output: +- Run `latexmk` with minimal terminal output: `latexmk -silent {{filename.tex}}`