Vim Tips Wiki
Register
Advertisement

Proposed tip Please edit this page to improve it, or add your comments below (do not use the discussion page).

Please use new tips to discuss whether this page should be a permanent tip, or whether it should be merged to an existing tip.
created November 28, 2011 · complexity basic · author Wuzzeb · version 7.0

When you are editing a large LaTeX project, it is easy to jump around in Vim using tags, marks, file tree plugins, etc. One problem is that after you jump to a tag in Vim, the pdf open in another application does not change page. This tip adds a command to Vim to change the page of the pdf to match the current location in Vim, and assumes you are using the Latex-Suite.

Finding pdf filename and line for current cursor[]

Add the following code to your tex.vim file (~/.vim/ftplugin/tex.vim on Unix, or $HOME/vimfiles/ftplugin/tex.vim on Windows). Also add one of the OpenPDF functions listed below, depending on your operating system.

"Load PDF to the page containing label
function! LoadEvinceByLabel(l)
  for f in split(glob("*.aux"))
    let label = system('grep "^.newlabel{' . a:l . '" ' . f)
    let page = matchstr(label, '.\{}{\zs.*\ze}}')
    if ! empty(page)
      call OpenPDF(substitute(f, "aux$", "pdf", ""), page)
      return
    endif
  endfor
endfunction

"Load PDF to the page containing the nearest previous label to the cursor
function! EvinceNearestLabel()
  let line = search("\\label{", "bnW")
  if line > 0
    let m = matchstr(getline(line), '\\label{\zs[^}]*\ze}')
    if empty(m)
      echomsg "No label between here and start of file"
    else
      call LoadEvinceByLabel(m)
    endif
  endif
endfunction

The first function looks through the aux files created by compiling the latex file for the label passed in as a parameter. If it finds the label, it loads the page number and then loads the pdf to the given page. If you use the hyperref package, replace the pattern

'.\{}{\zs.*\ze}}'

in the call to matchstr() in function LoadEvinceByLabel with:

'newlabel{.*}{{.*}{\zs.*\ze}{.*}{.*}{.*}}'

This is because the hyperref package adds three additional fields after the page number to the label definition line in the .aux files.

The second function searches for the nearest label from the current position and calls LoadEvinceByLabel.

To use them, add something like:

nnoremap <buffer> <LocalLeader>e :call EvinceNearestLabel()<CR>

Now \e will load the pdf viewer to the page containing the nearest label to the current cursor position (assuming the default backslash for the LocalLeader key). This works well on multi-file projects since the aux file is searched to find the pdf name. So you can jump around in Vim using its wonderful tools, then tell the pdf viewer to jump to the same page.

If you have set up tags, you can also add:

command! -nargs=1 -complete=tag Pdf call LoadEvinceByLabel("<args>")

to create command :Pdf so you can use Tab completion on labels to jump to a given location.

Linux[]

Evince[]

On Linux with, use the following OpenPDF function:

function! OpenPDF(file,page)
  exec 'silent ! evince --page-label=' . a:page . ' ' . a:file . ' > /dev/null 2>&1 &'
endfunction

Evince is smart enough so that if the pdf is already open, it just changes to the page of the existing window, and if the file is not open yet, it creates the new window and jumps to the given page.

Okular[]

function! OpenPDF(file,page)
  exec 'silent ! okular --page ' . a:page . ' --unique ' . a:file . ' > /dev/null 2>&1 &'
endfunction

Windows[]

Acrobat[]

Commands can be sent to Acrobat using cmcdde, and the following version of OpenPDF can be used:

function! OpenPDF(file, page)
  execute '!start cmcdde acroviewr10 control [DocOpen("' . a:file . '")][DocGoTo("' . a:file . ',' . a:page . '")]'
endfunction

Acrobat needs to be closed before compiling which can be done with the following commands (the has("win32") test allows this code to be in a file that may be used on systems other than Windows, where different commands would be available):

if has("win32")
  let s:AcroDDE = "cmcdde acroviewr10 control "
  let s:ClosePdf = s:AcroDDE.'[DocOpen("%:p:r.pdf")][DocClose("%:p:r.pdf")] '
  let g:Tex_CompileRule_pdf = s:ClosePdf.' & texify -bp --src $*'
  let g:Tex_ViewRule_pdf =
          \ 'C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe'
endif

The above assumes that cmcdde.exe is in a directory in your PATH. Alternatively, specify the full path name to cmcdde in s:AcroDDE.

Notes for Windows[]

May merge or remove this material later; keeping as miscellaneous notes for now.

When using Adobe Reader on Windows to view pdf files, the current file is locked. That makes it necessary to close the pdf file before recompiling a tex file into pdf.

To close the pdf output file of the currently edited tex file, use:

:!start cmcdde acroviewr10 control [DocOpen("%:p:r.pdf")][DocClose("%:p:r.pdf")]

DocOpen registers the pdf with the dde server. DocClose then closes the pdf.

For Adobe Reader versions prior to 10, use acroview instead of acroviewr10. Adobe has announced that future versions will also have the version number in the server name.

Some other DDE commands are available with Adobe Reader, for example, DocGoTo and DocGoToNameDest. The first can be used to jump to a particular page in the pdf while the second jumps to a named destination. Perhaps the second one could be used to do a forward search with the Adobe Reader. (The idea is to call DocGoToNameDest with a fixed bookmark, say "cursorposition", and use latex to create that bookmark when compiling. Not sure if there exists some latex packet which could be used for that.)

Here is a trick to open Adobe Reader on the last page: use DocGoTo with a large page number (which doesn't exist):

:!start cmcdde acroviewr10 control [DocOpen("%:p:r.pdf")][DocGoTo("%:p:r.pdf,10000")]

Mac[]

Need some ideas. Some AppleScript in OpenPDF should do the job.

Comments[]

Advertisement