我使用 Medium Scheme 安装了 Texlive。现在想将所有包添加到 Full Scheme,而不是逐个添加包。我该怎么做?
答案1
您可以使用以下方式列出 texlive 包方案
tlmgr info schemes
然后使用tlmgr install
安装所需的方案。例如,要安装完整方案,请执行以下操作
tlmgr install scheme-full
您还可以查看和安装特定的集合。例如,
# view collections
tlmgr info collections
# install a collection
tlmgr install collection-mathscience
您可以使用以下方式列出方案中的集合以及集合中的包
tlmgr info --list scheme-basic
tlmgr info --list collection-mathscience
我建议您在安装之前查看一下集合,scheme-full
因为您可能不需要其中的一些(例如语言集合)。