Change Latex2PDF command to use biblatex/biber

This commit is contained in:
Talia 2019-11-26 11:06:16 +01:00
parent 144fd0fd6a
commit 222621b1c5
1 changed files with 1 additions and 1 deletions

2
vimrc
View File

@ -953,4 +953,4 @@ endfunction
" --- LaTeX Stuff ---
command Latex2PDF call Async([ 'pdflatex -draftmode '.expand('%'), 'bibtex '.expand('%:r'), 'pdflatex -draftmode '.expand('%'), 'pdflatex '.expand('%'), ['/bin/bash', '-c', 'rm *.{aux,bbl,dvi,log,blg}'] ])
command Latex2PDF call Async([ 'pdflatex -draftmode '.expand('%'), 'biber '.expand('%:r'), 'pdflatex '.expand('%'), ['/bin/bash', '-c', 'rm *.{aux,bbl,dvi,log,blg,bcf,xml}'] ])