Ubuntu 上正确的 vim-latex 配置

发布于 2024-08-29 20:33:24 字数 327 浏览 3 评论 0 原文

我已经使用 Ubuntu Synaptic 软件包管理器安装了 vim-latex 软件包,并按照 .vimrc 文件。 net/documentation/latex-suite/recommended-settings.html" rel="nofollow noreferrer">文档中的说明。但是,当我在 Vim 中打开 .tex 文件时,没有出现新的菜单选项,并且我似乎无法使用 \ll 编译文档。我做错了什么?

I have installed the vim-latex package using Ubuntu Synaptic package manager and updated my .vimrc file following the instructions from the documentation. However, when I open a .tex file in Vim, none of the new menu options appear, and I can’t seem to compile documents using \ll. What did I do wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阳光①夏 2024-09-05 20:33:24

在 Debian(以及 Ubuntu)上,Vim 插件分两步安装:

  1. 插件文件从包含该文件的 .deb 包中安装
    插件。
  2. 这些文件的符号链接是在 ~/.vim/ 目录中创建的
    想要使用该插件的用户。

后一步应该由管理员手动执行或
用户自己通过 vim-addons 脚本检查所有内容
系统中可用的 Vim 插件(即从包安装),以及
检查它们的状态,包括系统范围和当前用户的状态:

$ vim-addons status

要安装插件(例如,latex-suite),请运行命令

$ vim-addons install latex-suite

,其中最后一个参数代表您想要安装的插件的名称安装
(检查上一个命令的输出以找出正确的名称)。

如果您想在系统范围内安装它,请以 root 身份运行相同的命令并添加
-w 选项。很少建议在系统范围内安装插件,
尽管。

同样,您可以使用 ~/.vim/ 目录中删除插件,

$ vim-addons remove latex-suite

同样,vim-addons 这里不会触及插件的文件本身;仅此而已
删除指向它们的链接。

On Debian (and, hence, Ubuntu), Vim plugins are installed in two steps:

  1. The plugin files are installed from the .deb package containing that
    plugin.
  2. Symbolic links to those files are created inside ~/.vim/ directories for
    users 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 all
Vim plugins available in the system (that is, installed from packages), and
check their status, both system-wide and for the current user:

$ vim-addons status

To install a plugin (say, latex-suite), run the command

$ vim-addons install latex-suite

where 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 using

$ vim-addons remove latex-suite

Again, vim-addons here does not touch the plugin’s files themselves; it only
removes the links pointing to them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文