我按照以下说明安装了 TeX Live 2009http://www.tug.org/texlive/quickinstall。然后,为了让我的本地 TeX Live 安装与 Ubuntu 包管理系统兼容,我按照http://www.tug.org/texlive/debian.html。也就是我执行了以下步骤。
$ sudo aptitude install equivs
$ mkdir /tmp/tl-equivs && cd /tmp/tl-equivs
$ equivs-control texlive-local
# I replaced the contents of texlive-local by http://www.tug.org/texlive/debian-control-ex.txt
$ equivs-build texlive-local
$ sudo dpkg -i texlive-local_2009-1~1_all.deb
但是,当我通过 Ubuntu 包管理系统安装 kile 时,它要求我安装许多依赖项,而这些依赖项已由我的 texlive-local 包提供。有没有人有建议来解决这个问题?
答案1
texlive-local必须提供:texlive-base-bin、texlive-latex-base。
其他被提及的内容是推荐和建议:
$ sudo apt-get --no-install-recommends 安装 kile
应该可以解决问题 =)