Hello,

I've started using latex-suite and I like it very much, but I am getting
some issues.
I'm using Arch Linux with the last vim-latexsuite build (2013-01-26).

1) I am using biblatex with biber (g:Tex_BiberFlavour = "biber") and
latex-suite doesn't handle it, because it decides whether to launch bibtex
or not based on the .aux file, which is not used by biber (it generates a
.bcf file instead). I have found a way to fix this by modifying the line
        if runCount == 0  && Tex_IsPresentInFile('\\bibdata',
mainFileName_root.'.aux' )
in compiler.vim with
        if runCount == 0  && (Tex_IsPresentInFile('\\bibdata',
mainFileName_root.'.aux') || filereadable(mainFileName_root.'.bcf') )
to test if there is a .bcf file in the directory.

2) The previous fix works nice with a dvi output, but when I try to
generate a pdf output with :TTarget pdf it doesn't work. I set
g:Tex_MultipleCompileFormat to "pdf,dvi" but the compiler is always ran
only one time.
When using dvi I get a message "ran latex n times" in vim statusbar at the
end, but not when using pdf, even when there isn't any error. So it seems
that the function Tex_CompileMultipleTimes is not even called and I can't
find any reason for this.

Thank you in advance

Auguste

PS : I apologize for my approximate English
------------------------------------------------------------------------------
Own the Future-Intel(R) Level Up Game Demo Contest 2013
Rise to greatness in Intel's independent game demo contest. Compete 
for recognition, cash, and the chance to get your game on Steam. 
$5K grand prize plus 10 genre and skill prizes. Submit your demo 
by 6/6/13. http://altfarm.mediaplex.com/ad/ck/12124-176961-30367-2
_______________________________________________
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel

Reply via email to