如何在 Ubuntu 13.10 中安装 Latex

Ubu*_*New 15 apt latex

我最近在我的电脑上安装了 Ubuntu 13.10。我想在我的桌面上安装 Latex 但我无法安装它。

我首先尝试使用以下命令进行安装:

sudo apt-get install texlive-full
Run Code Online (Sandbox Code Playgroud)

但我收到以下错误:

E: Package 'texlive-full' has no installation candidate
Run Code Online (Sandbox Code Playgroud)

小智 36

您应该先尝试更新您的 APT 缓存: sudo apt-get update

然后再试一次 sudo apt-get install texlive-full

顺便说一句,您可以通过执行以下操作列出所有 texlive 可用包: apt-cache search --names-only texlive

  • 仅供参考,这将需要 4GB 的安装空间。如果需要,您可以减少安装。 (4认同)