vim-latex安装和配置

最近接触latex,一开始在mac上用texpad,感觉体验不错。后来,由于试用期过了,必须购买才能使用。因此,准备再试试vim。这里要用的latex插件是vim-latex。

0、环境

操作系统:OS X EI Caption版本10.11.6
Vim版本:MacVim Custom Version 7.4 (104)
已经安装了mactex-20161009.pkg。

1、安装

按照官方文档,一步一步走就行:

  1. 下载
    到SourceForge Files for vim-latex,下载安装文件。这里下的是vim-latex-1.9.0.tar.gz (289.3 kB)

  2. 安装
    将压缩包解压到.vim目录下。注意,是要将压缩包中的各个子文件夹和文件等内容解压到.vim目录下。

  3. 安装help文档
    安装包正确解压之后,.vim/doc目录下就是vim-latex的文档。启动vim,用如下命令可以进行安装:

     :helptags ~/.vim/doc(for *nix users)
    
  4. 配置
    在vimrc文件中,确保vimrc中包含了如下配置:

     " REQUIRED. This makes vim invoke Latex-Suite when you open a tex file.
     filetype plugin on
     
     " IMPORTANT: win32 users will need to have 'shellslash' set so that latex
     " can be called correctly.
     " set shellslash
     
     " 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'
     
     " this is mostly a matter of taste. but LaTeX looks good with just a bit
     " of indentation.
     set sw=2
     
     " TIP: if you write your \label's as \label{fig:something}, then if you
     " type in \ref{fig: and press you will automatically cycle through
     " all the figure labels. Very useful!
     set iskeyword+=:
    

这里的配置是从官方安装说明中拷贝的,其中不需要的可以自行注释掉。由于这里用的不是windows,所以上面我的配置中就注掉了set shellslash
5.完成
到这里,就完成了vim的安装。可以在vim中查看其帮助文档:

    :help latex-suite.txt
    :help latexhelp.txt

2、试错和使用

2.1报错解决

安装完成之后,就可以使用了。打开一份latex文档,在normal模式下,按下:

\ll

顺利的话就可以编译成功,latex生成的pdf。不过,这里我还是遇到了报错:

I can't find file `latex_notes.tex`. latex_notes.tex
Emergency stop. latex_notes.tex

网上查了下,好像是由于latex源文件所在的路径中有中文字符导致的。这里迁就下,将其放到一个全是英文的路径中,然后重新编译,应该就可以了(参考链接)。
如果latex文件中有中文字符,这时编译得到的pdf文档里面中文字符的位置,可能全是空白。这里需要设置下latex的编译引擎,将其设置为xelatex。vim-latex配置文件(.vim/ftplugin/latex-suite/texrc)

110 TexLet g:Tex_CompileRule_pdf = 'xelatex -interaction=nonstopmode $*'

这样,应该就可以编译成功了。(参考链接)

2.2使用

下面是几个操作命令:

  • \ll编译
  • \lv预览pdf

先写这些,后续再补充。

你可能感兴趣的:(vim-latex安装和配置)