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:
@@ -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
15
latexmk/.latexmkrc
Normal 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";
|
||||||
Reference in New Issue
Block a user