在 Ubuntu 20.04 上为 Texstudio 安装 .sty 包

在 Ubuntu 20.04 上为 Texstudio 安装 .sty 包

如何安装 Texstudio 为 Ubuntu 20.04 构建 tex 文件时缺少的 .sty 包?任何方法都适用于我,但最好通过终端或 tex 文件前言的方法最有用。

答案1

首先,mathcomp似乎只是提供一些符号来书写单位。如今,LaTeX 标准改用包siunitx

关于Ubuntu 的mathcomptexlive-latex-recommended。Ubuntu 将 TeXLive 拆分为几个 Ubuntu 包(不要与 LaTeX 包混淆,它们通常包含许多 latex 包)。鉴于 不是mathcomp一个广泛使用的包,它不太可能在 中列出texlive-latex-recommended,可能更容易安装它,texlive-all我认为它被称为(?)

就我个人而言,我不会使用 Ubuntu 的 TeXLive,因为我想获得最新的更新,所以我使用上游的 TeXLive(参见http://tug.org/texlive)。

如果你使用 Ubuntu 和 Ubuntu 提供的 TeXLive,那么确定给定 latex 包属于哪个 Ubuntu 包的方法是确保你已经apt-file安装了

sudo apt install apt-file
sudo apt-file update

时不时地运行后一个命令。

然后通过例如搜索乳胶包

apt-file search mathcomp.sty

这里它告诉我

texlive-science: /usr/share/texlive/texmf-dist/tex/latex/mathcomp/mathcomp.sty

所以我需要安装texlive-science

相关内容