Ubuntu 上正确的 vim-latex 配置
我已经使用 Ubuntu Synaptic 软件包管理器安装了 vim-latex
软件包,并按照 .vimrc 文件。 net/documentation/latex-suite/recommended-settings.html" rel="nofollow noreferrer">文档中的说明。但是,当我在 Vim 中打开 .tex
文件时,没有出现新的菜单选项,并且我似乎无法使用 \ll
编译文档。我做错了什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Debian(以及 Ubuntu)上,Vim 插件分两步安装:
.deb
包中安装插件。
~/.vim/
目录中创建的想要使用该插件的用户。
后一步应该由管理员手动执行或
用户自己通过
vim-addons
脚本检查所有内容系统中可用的 Vim 插件(即从包安装),以及
检查它们的状态,包括系统范围和当前用户的状态:
要安装插件(例如,
latex-suite
),请运行命令,其中最后一个参数代表您想要安装的插件的名称安装
(检查上一个命令的输出以找出正确的名称)。
如果您想在系统范围内安装它,请以 root 身份运行相同的命令并添加
-w
选项。很少建议在系统范围内安装插件,尽管。
同样,您可以使用
~/.vim/
目录中删除插件,同样,
vim-addons
这里不会触及插件的文件本身;仅此而已删除指向它们的链接。
On Debian (and, hence, Ubuntu), Vim plugins are installed in two steps:
.deb
package containing thatplugin.
~/.vim/
directories forusers that would like to use the plugin.
The latter step is supposed to be performed manually by the administrator or
the users themselves via the
vim-addons
script, which allows to examine allVim plugins available in the system (that is, installed from packages), and
check their status, both system-wide and for the current user:
To install a plugin (say,
latex-suite
), run the commandwhere the last argument stands for the name of the plugin you want to install
(check the output of the previous command to find out the correct name).
If you want to install it system-wide, run the same command as root and add
the
-w
option. It is rarely recommended to install a plugin system-wide,though.
Similarly, you can remove a plugin from your
~/.vim/
directory usingAgain,
vim-addons
here does not touch the plugin’s files themselves; it onlyremoves the links pointing to them.