Vim-latex 插件 的安装

Posted schips

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vim-latex 插件 的安装相关的知识,希望对你有一定的参考价值。

ref:https://www.jianshu.com/p/ddd825064062


 

Vim-latex 插件

1. 安装

Vim-latex 插件是一个强大的Latex插件, 它的安装方法是:

将下面代码放在~/.vimrc 中:

Plugin ‘vim-latex/vim-latex‘
" 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

" 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‘

注意, Plugin ‘vim-latex/vim-latex‘一定要在call vundle#begin()call vundle#end() 中间.

在 Vim中运行:

:source %
:PluginInstall

2. 配置: ~/.vim/ftplugin/tex.vim

这个文件以后就是你的用户配置文件. 所有的 tex 文档都会自动加载这里的命令.
~/.vim/ftplugin/tex.vim文件中, 加入下面的代码:

" 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 <C-n> you will automatically cycle through
" all the figure labels. Very useful!
set iskeyword+=:

3. 安装和插入模板

当新建一个空白的tex文本之后, 可以运行:TTemplate来插入一个模板. 之后, 就会有一个模板列表出现, 选中相应的数字就可以插入.

你也可以自行配置模板的库文件. 比如, 在~/.vim/ftplugin/latex-suite/templates中, 可以存储几个 tex 文件, 这些文件都会出现在你的模板列表里. 而且, 你还可以自行定义一下模板的存储目录, 比如, 在tex.vim中, 输入

let g:Tex_CustomTemplateDirectory=‘你的模板目录’

然后, 这个目录下的所有文件, 也都将出现在模板列表中.



作者:李老师的好学生
链接:https://www.jianshu.com/p/ddd825064062
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

以上是关于Vim-latex 插件 的安装的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 vim-latex 在 vi​​m 中禁用代码折叠?

VIM 代码片段插件 ultisnips 使用教程

vim代码片段插件ultisnips的使用

Android 插件化VirtualApp 源码分析 ( 目前的 API 现状 | 安装应用源码分析 | 安装按钮执行的操作 | 返回到 HomeActivity 执行的操作 )(代码片段

#VSCode保存插件配置并使用 gist 管理代码片段

Atom编辑器折腾记_(15)JS代码片段补全(插件:javascript-snippets)