[Vim-latex-devel] Compiling with latexmk does not work as expected
Brought to you by:
srinathava,
tmaas
From: Niels K. <ni...@ko...> - 2012-07-04 20:06:11
|
Hi, I am trying to get something compiled with latexmk and the vim-latex-suite. When I invoke latexmk on the file in the command line it work w/out any problems. When I invoke the compile in vim I just get: "Runnning bibtex… Ran latex 1 time(s)" Even when the bib-file or references changed. commands for compilation in my .vimrc: let g:Tex_MultipleCompileFormats = 'pdf' let g:Tex_CompileRule_pdf = 'latexmk -pdf -pvc $*' let g:Tex_DefaultTargetFormat='pdf' I also tried "let g:Tex_CompileRule_pdf = 'latexmk $*'" My .latexmkrc looks like that: $pdflatex = "xelatex -synctex=1 -interaction=nonstopmode %O %S"; $bibtex_use = 2; $print_type = 'pdf'; $pdf_mode = 1; $pdf_previewer = "open -a /Applications/Skim.app"; $pdf_update_method = 0; $clean_ext = "paux lox pdfsync out"; $force_mode = 1; As written before: invoking latexmk on the file in the command line "latexmk file.tex" works as it should, only in vim it doesn't. Any ideas? |