瀏覽代碼

latexmk: minor tweaks to descriptions (#1467)

Waldir Pimenta 7 年之前
父節點
當前提交
850ca123f5
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      pages/linux/latexmk.md

+ 4 - 4
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}}`