но я могу запустить как вручную с :! bibtex texfile
, а затем скомпилировать с ll
ярлык дважды, чтобы получить этикетки и цитаты правильно в теле бумаги.
Я на MacBook Pro под управлением 10.6.6 и MacVim 7.3 (53) и до современных TeXLive-2010-64.
раньше ll
будет запускать bibtex и компилировать по мере необходимости, чтобы все было правильно. Я обычно использую свой ноутбук Win7 с эквивалентным программным обеспечением, поэтому я не могу точно сказать, когда это разоренный.
спасибо! FWIW, я вставлю свой .vimrc и tex.ВИМ файлы ниже.
My .файл vimrc есть
" general
set columns=80
set lines=40
set nu
set expandtab
set smartindent
set tabstop=4
set shiftwidth=4
" for vim-R-plugin2
set nocompatible
syntax enable
" for vimlatexsuite (and Vim-R-plugin)
" REQUIRED. This makes vim invoke Latex-Suite when you open a tex file.
filetype plugin on
" IMPORTANT: grep will sometimes skip displaying the file name if you
" search in a singe file. This will confuse Latex-Suite. Set your grep
" program to always generate a file-name.
set grepprg=grep -nH $*
" OPTIONAL: This enables automatic indentation as you type.
filetype indent on
" OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to
" 'plaintex' instead of 'tex', which results in vim-latex not being loaded.
" The following changes the default filetype back to 'tex':
let g:tex_flavor='latex'
и tex.vim имеет
let g:Tex_DefaultTargetFormat = 'pdf'
let g:Tex_CompileRule_dvi = 'latex --interaction=nonstopmode $*'
let g:Tex_CompileRule_ps = 'dvips -Pwww -o $*.ps $*.dvi'
let g:Tex_CompileRule_pspdf = 'ps2pdf $*.ps'
let g:Tex_CompileRule_dvipdf = 'dvipdfm $*.dvi'
let g:Tex_CompileRule_pdf = 'pdflatex -synctex=1 --interaction=nonstopmode $*'
let g:Tex_ViewRule_dvi = 'texniscope'
let g:Tex_ViewRule_ps = 'Preview'
let g:Tex_ViewRule_pdf = 'Skim'
let g:Tex_FormatDependency_ps = 'dvi,ps'
let g:Tex_FormatDependency_pspdf = 'dvi,ps,pspdf'
let g:Tex_FormatDependency_dvipdf = 'dvi,dvipdf'
" let g:Tex_IgnoredWarnings ='
" "Underfulln".
" "Overfulln".
" "specifier changed ton".
" "You have requestedn".
" "Missing number, treated as zero.n".
" "There were undefined referencesn".
" "Citation %.%# undefinedn".
" "oval, circle, or line size unavailablen"'