1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 20:40:32 +01:00

Add configuration files for latexmk.

This commit is contained in:
Bert Peters
2016-11-09 13:06:02 +01:00
parent 4bcdb6b930
commit a3bbef659d
2 changed files with 16 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ installIfAvailable tmux
installIfAvailable systemctl systemd installIfAvailable systemctl systemd
installIfAvailable pacman installIfAvailable pacman
installIfAvailable git installIfAvailable git
installIfAvailable latexmk
if commandAvailable weechat; then if commandAvailable weechat; then

15
latexmk/.latexmkrc Normal file
View File

@@ -0,0 +1,15 @@
# Latexmk default configuration
$pdf_previewer = 'evince';
# Always generate pdfs
$pdf_mode = 1;
# Use make to generate missing dependencies
$use_make_for_missing_files = 1;
# Use xelatex for compilation
$pdflatex = "xelatex -synctex=1 --shell-escape %O %S";
# Specify all cleanup files
$clean_ext = "aux fdb_latexmk fls log nav out snm %R.synctex.gz toc";