LaTeX + sort of GNU Make. It automates LaTeX compilation.
Table of Contents
Usage #
The following command monitors all dependencies (files) and automatically recompile main.tex when any of the files are changed. With PDF viewer like Skim, it makes the whole process really nice.
$ latexmk -pvc -f -pdf main.tex
Also put the following in ~/.latexmkrc
:
$pdf_previewer = "open -a Skim";
The following command cleans up temporary files.
$ latexmk -C main.tex
If you want to force-recompile everything, use the "super go mode"
$ latexmk -gg main.tex
-f
options force continued processing past errors.
$ latexmk -f main.tex
Tips #
Incoming Links #
Related Articles (Article 0) #
Suggested Pages #
- 0.025 [[https://code.google.com/p/opendetex/]]
- 0.025 Snakemake
- 0.025 Curriculum vitae
- 0.025 TeX environment setup
- 0.025 Drake
- 0.025 PythonTeX
- 0.025 Vim
- 0.025 MathJax
- 0.013 Git
- 0.013 [[https://engineering.purdue.edu/ECN/Support/KB/Docs/ViTextEditorTutorial]]
- More suggestions...