如何使用gedit-latex-plugin?


10

我已经安装了软件包texlivegedit-latex-plugin。我看到了.tex文件的语法高亮显示,但是在乳胶的gedit菜单或工具栏中没有看到任何多余的东西-> pdf,正如我所期望的那样,并且没有任何类似的乳胶插件可以在其中启用编辑->首选项->插件对话框。我想念什么?

在此处输入图片说明

Answers:



6

我有同样的问题。这与以下事实有关:ubuntu 11.10随附了较新版本的gedit,该gedit-latex-plugin版本不支持ubuntu存储库中当前的(版本0.2.0)。

gedit-latex-plugin目前正在开发新版本的(在lauchpad中)

以下是一些选项:

  • 您可以尝试运行当前不稳定版本的插件。这在我的机器上经常出现段错误,因此我继续前进...

  • 您可以尝试使用独立编辑器,例如latexila是一个很棒的编辑器。但是,它不支持使用摘要(对我来说这是一个大问题)。如果摘要对您而言并不那么重要,请尝试一下:

    sudo apt-get install latexila
    
  • 我最终将外部工具插件用于gedit。关于此选项,这里有一篇不错的文章。快速操作方法:

    1. 在gedit中,转到“ 编辑” >“ 首选项” >“ 插件”, 然后向下滚动到外部工具插件,并确保选中其复选框。

    2. 关闭“偏好设置”对话框,然后转到“ 工具” >“ 管理外部工具”

    3. 每个工具都是一个公正的shell脚本。您可以按照此处的说明使用几个变量。例如,我的Latex-to-PDF工具如下所示:

      #!/bin/sh
      
      filename=$GEDIT_CURRENT_DOCUMENT_NAME
      shortname=`echo $filename | sed 's/\(.*\)\.tex$/\1/'`
      
      latex -interaction batchmode -src $filename
      bibtex $shortname
      makeindex $shortname
      latex -interaction batchmode -src $filename
      latex -synctex=1 -interaction batchmode -src $filename
      dvips -t a4 $shortname.dvi
      ps2pdf -sPAPERSIZE=a4 -dOptimize=true -dEmbedAllFonts=true $shortname.ps
      evince $shortname.pdf
      

      缺点是它不支持较大的“项目”,而仅编译当前正在编辑的文件。

提示在SyncTex上查看此帖子,以在gedit和evince之间进行向前和向后搜索,这很棒!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.