web-dev-qa-db-ja.com

TexLiveのパッケージの検索

次のコマンドでTexStudioをインストールしました。

Sudo apt-get install texstudio

ここで、amsmathamsfontsなどのパッケージをインストールする必要があります。入力したもの:

Sudo apt-get install texlive-<\t>

しかし、私は何百もの提案を受け取ります。必要なパッケージを取得するためにどの提案をインストールするのかわかりません。

texlive-...を介してインストールする必要があるapt-get- componentを見つけて、必要なパッケージを取得するにはどうすればよいですか?

4
eDeviser

Ubuntu Software Centerから、必要なLaTeXパッケージの名前(例:amsmath)を検索すると、必要なものが見つかります( e .. )。

コマンドラインを介して、apt-cacheで同じことを行うことができます。

apt-cache search amsmath
texlive-latex-base - TeX Live: LaTeX fundamental packages
texlive-latex-extra - TeX Live: LaTeX additional packages
texlive-math-extra - TeX Live: Mathematics packages
texlive-lang-italian - TeX Live: Italian

そして、確かに

apt-cache show texlive-latex-base
Package: texlive-latex-base

[...]

  amscls -- AMS document classes for LaTeX.
  amsmath -- AMS mathematical facilities for LaTeX.
  babel -- Multilingual support for Plain TeX or LaTeX.
6
dadexix86