Package-Management

如何在 Kubuntu 中為 LaTeX 安裝列表包?

  • December 9, 2020

我用這些命令在我的 Kubuntu 上安裝了 LaTeX:

sudo apt-get install abntex
sudo apt-get install texmaker
sudo apt-get install texlive-latex-base texlive-latex-extra texlive-latex-recommended texlive-fonts-recommended texmaker

但我還需要listings為我的作業紙使用包。如何在listings這里安裝 LaTeX 軟體包?

我建議您使用apt-file搜尋包含特定文件的包。

如果你呼叫

apt-file search listings.sty

您應該找到包含listings.

在我的系統上,它包含在texlive-latex-recommended您已經安裝的系統中。

為了安全起見,我會執行

texhash

更新乳膠的目錄樹。

如果在那之後你不能讓它工作,我很確定還有其他問題。

作者提出的解決方案或問題:

好的,事實證明listings並沒有錯過它是導致問題的不同的東西。我找到了一個解決方案:

mkdir -p /usr/share/texmf-texlive/tex/latex/floatflt
cd /usr/share/texmf-texlive/tex/latex/floatflt
rm -f floatflt.* float*.tex
wget http://mirror.ctan.org/macros/latex/contrib/floatflt/floatflt.ins
wget http://mirror.ctan.org/macros/latex/contrib/floatflt/floatflt.dtx
latex floatflt.ins
texhash /usr/share/texmf-texlive

引用自:https://unix.stackexchange.com/questions/62832