为什么 asciidoc 需要 texlive 作为依赖项?

为什么 asciidoc 需要 texlive 作为依赖项?

当我尝试安装时发生以下情况asciidoc

$ sudo apt-get install asciidoc
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  dblatex docbook-utils jadetex latex-beamer latex-xcolor libgraphite3
  libkpathsea6 libptexenc1 lmodern luatex pgf prosper ps2eps tex-gyre texlive
  texlive-base texlive-bibtex-extra texlive-binaries texlive-common
  texlive-doc-base texlive-extra-utils texlive-font-utils
  texlive-fonts-recommended texlive-fonts-recommended-doc
  texlive-generic-recommended texlive-latex-base texlive-latex-base-doc
  texlive-latex-extra texlive-latex-extra-doc texlive-latex-recommended
  texlive-latex-recommended-doc texlive-luatex texlive-math-extra
  texlive-pictures texlive-pictures-doc texlive-pstricks texlive-pstricks-doc
  tipa xmlto

据我所知,它对于 html 和 docbook 后端来说完全没有必要:只有当我想生成 latex 文件时才需要它。

这个问题与这个问题,从某种意义上说,在 Ubuntu / Debian 上安装原始 Tex Live 并不容易(有时,这对于获取最新版本的 Tex Live 组件是必要的)。

答案1

尝试:

sudo apt-get --no-install-recommends install asciidoc

如果维护者认为许多使用它的人会需要第二个包,或者它有一些需要它的功能,那么包可以推荐另一个包。

相关内容