Vim脚本来编译TeX源文件,并且只有在没有错误时才启动PDF
我正在切换到使用Vim for我的LaTeX编辑环境。 我希望能够在Vim中编译源文件,并在编译成功时启动外部查看。
我知道Vim-Latex套件,但是,如果可能的话,宁愿避免使用它:它非常重量大,劫持了我的许多密钥,并且用很多文件混淆了我的vimruntime。
这是我现在拥有的:
if exists('b:tex_build_mapped')
finish
endif
" use maparg or mapcheck to see if key is free
command! -buffer -nargs=* BuildTex call BuildTex(0, <f-args>)
command! -buffer -nargs=* BuildAndViewTex call BuildTex(1, <f-args>)
noremap <buffer> <silent> <F9> <Esc>:call BuildTex(0)<CR>
noremap <buffer> <silent> <S-F9> <Esc>:call BuildTex(1)<CR>
let b:tex_build_mapped = 1
if exists('g:tex_build_loaded')
finish
endif
let g:tex_build_loaded = 1
function! BuildTex(view_results, ...)
write
if filereadable("Makefile")
" If Makefile is available in current working directory, run 'make' with arguments
echo "(using Makefile)"
let l:cmd = "!make ".join(a:000, ' ')
echo l:cmd
execute l:cmd
if a:view_results && v:shell_error == 0
call ViewTexResults()
endif
else
let b:tex_flavor = 'pdflatex'
compiler tex
make %
if a:view_results && v:shell_error == 0
call ViewTexResults()
endif
endif
endfunction
function! ViewTexResults(...)
if a:0 == 0
let l:target = expand("%:p:r") . ".pdf"
else
let l:target = a:1
endif
if has('mac')
execute "! open -a Preview ".l:target
endif
endfunction
问题是没有设置v:shell_error
,即使有编译错误。 有关如何检测编译是否成功的任何建议或见解将不胜感激! 谢谢!
在这里给出的答案之间,加上一些其他方法的研究,我认为这已经得到圆满解决。 我在这里发布解决方案,以防其他人感兴趣。
基本上,最好的解决方案似乎是使用橡胶,LaTeX周围的包装,通常“正常工作”,并提供非常干净的输出/错误。 如果在系统中找到并且在当前目录中找不到Makefile,下面给出的解决方案优先使用橡胶。 如果找到Makefile,它就会使用它。 如果没有安装Makefile和橡胶,则使用pdflatex。 在任何情况下,如果源代码编译失败,(过滤和解析)错误将被发送到QuickFix缓冲区,QuickFix窗口会自动打开。 如果编译成功,将写入一条短消息,如果用户请求了该消息,则PDF将打开以供查看。
在我自己的安装中,我已经从Vim-Latex中解除(优秀的)“SetLatexEfm()”函数以解析和过滤tex构建输出。 但是,如果找不到此功能,则下面的功能默认设置错误消息格式,该格式工作良好,可以在QuickFix窗口中识别并突出显示错误,虽然有很多残缺。
function! BuildTex(view_results, ...)
" record position
let save_cursor = getpos(".")
" save work
silent write
" From: http://stackoverflow.com/questions/2679475/vim-script-to-compile-tex-source-and-launch-pdf-only-if-no-errors
" If your shell is bash, you can use the ${PIPESTATUS} array variable to get
" the correct exit code (borrowed from this answer to another question).
silent setlocal shell=bash
silent setlocal shellpipe=2>&1 | tee %s;exit ${PIPESTATUS[0]}
let success = 1
if filereadable("Makefile")
" If Makefile is available in current working directory, run 'make' with arguments
echon "compiling using Makefile ..."
let l:makecmd = "make ".join(a:000, ' ')
silent execute "setlocal makeprg=" . l:makecmd
try
" This function is defined in the Vim-Latex package,
" and provides excellent parsing and filtering of the error messages
" when running latex outside of the Rubber wrapper.
call s:SetLatexEfm()
catch /E117/
set errorformat=%E! LaTeX %trror: %m,
%E! %m,
%+WLaTeX %.%#Warning: %.%#line %l%.%#,
%+W%.%# at lines %l--%*d,
%WLaTeX %.%#Warning: %m,
%Cl.%l %m,
%+C %m.,
%+C%.%#-%.%#,
%+C%.%#[]%.%#,
%+C[]%.%#,
%+C%.%#%[{}]%.%#,
%+C<%.%#>%.%#,
%C %m,
%-GSee the LaTeX%m,
%-GType H <return>%m,
%-G ...%.%#,
%-G%.%# (C) %.%#,
%-G(see the transcript%.%#),
%-Gs%#,
%+O(%f)%r,
%+P(%f%r,
%+P %=(%f%r,
%+P%*[^()](%f%r,
%+P[%d%[^()]%#(%f%r,
%+Q)%r,
%+Q%*[^()])%r,
%+Q[%d%*[^()])%r
endtry
silent make
else
let l:special_tex_compiler = "rubber"
if executable(l:special_tex_compiler)
echon "compiling with Rubber ..."
silent execute "setlocal makeprg=" . l:special_tex_compiler . " -dfs %"
setlocal errorformat=%f:%l: %m
silent make %
else
echon "compiling ..."
let b:tex_flavor = 'pdflatex'
compiler tex
silent make %
endif
endif
" set/report compile status
if v:shell_error
let l:success = 0
" let l:wheight = winheight(bufnr("%")) / 2
" execute "copen ".l:wheight
copen
else
let l:success = 1
cclose
redraw
echon "successfully compiled"
endif
" view results if successful compile
if l:success && a:view_results
call ViewTexResults()
endif
" restore position
call setpos('.', save_cursor)
endfunction
function! ViewTexResults(...)
if a:0 == 0
let l:target = expand("%:p:r") . ".pdf"
else
let l:target = a:1
endif
if has('mac')
silent execute "! open -a Preview ".l:target
" obviously, you will need to write specific commands for other systems
" left as an exercise for the reader ...
endif
endfunction
command! -buffer -nargs=* BuildTex call BuildTex(0, <f-args>)
command! -buffer -nargs=* BuildAndViewTex call BuildTex(1, <f-args>)
noremap <buffer> <silent> <F9> <Esc>:call BuildTex(0)<CR>
noremap <buffer> <silent> <S-F9> <Esc>:call BuildTex(1)<CR>
更新:我打包并将其作为Vim文件类型插件脚本发布,可在以下网址找到:http://www.vim.org/scripts/script.php?script_id=3230。
假设你陷入了else-theres-no-makefile部分,这个问题可能与shellpipe
变量有关。
在我的系统(Ubuntu)上, shellpipe=2>&1| tee
如果失败, shellpipe=2>&1| tee
和内置make
调用不会设置v:shell_error
。
| tee
的返回状态 | tee
可能是v:shell_error
正在设置的内容。
如果你的shell是bash,你可以使用${PIPESTATUS}
数组变量来获得正确的退出代码(从这个答案中借用另一个问题)。
:set shellpipe=2>&1 | tee %s;exit ${PIPESTATUS[0]}
否则,你可以尝试:
:set shellpipe=>
:make %
这在设置v:shell_error
失败时会设置,但我不确定这是否会与转到错误行号功能v:shell_error
,如果有的话。
要查看变量设置为:
:set shellpipe?
我知道这与vim无关,但我认为latexmk可以完成这项工作。
这是一个脚本(用perl编写),它编译latex文件并更新pdf。 最有用的未来是自动更新。 只要你保存你的文件,'latexmk'编译它,如果你的PDF查看器支持它,视图就会被更新。
latexmk -pdf -pvc
如果latexmk使用'-halt-on-error'选项(或以不间断模式)运行latex,则编译将停止而不会暂停输入。
链接地址: http://www.djcxy.com/p/33373.html上一篇: Vim script to compile TeX source and launch PDF only if no errors