LaTeXila,现在GNOME LaTeX,是我在 GNOME 上最喜欢的 LaTeX 编辑器,但不幸的是它在 Ubuntu/Debian 上的软件包已经过时了:它提供的是 LaTeXila 3.22.0,而不是 GNOME LaTeX 3.38。
依赖关系问题显然现已解决,这似乎是造成这种情况的原因:新的上游版本 3.28 (#910573)
有没有办法在 Ubuntu 上安装最新版本的 GNOME LaTeX?如何编译它的分步说明是什么?
答案1
GNOME LaTeX 的安装可以在合并时完成ArchLinux PKGBUILD了解 Ubuntu。
首先,我们需要启用源代码存储库(deb-src
) 来自软件和更新(software-properties-gtk
),然后更新包列表并安装当前 LaTeXila 版本及其较新变体所需的所有构建依赖项:
sudo apt-get update
# for current
sudo apt-get build-dep latexila
# for the newest
sudo apt-get install libgtksourceview-4-dev libamtk-5-dev libtepl-5-dev libdconf-dev valac gobject-introspection gtk-doc-tools
然后使用以下命令下载最新的 tarball:
cd ~/Downloads
wget -c https://download.gnome.org/sources/gnome-latex/3.38/gnome-latex-3.38.0.tar.xz
tar -xf gnome-latex-3.38.0.tar.xz
cd gnome-latex-3.38.0
./configure --prefix=/usr/local --enable-gtk-doc
make -j$(nproc)
最后使用以下命令为 GNOME LaTeX 应用程序创建本地 deb 包检查安装:
sudo apt-get install checkinstall
sudo checkinstall
# for "Should I create a default set of package docs? [y]:" press <y>, <Enter>
# for description enter "GNOME LaTeX" and then hit <Enter> then <Ctrl>+<D>
# for "This package will be built according to these values:" hit <Enter>
# hit <Enter> until deb-package created and installed
享受