使用 Docker 镜像文件安装 BibLatex 包

使用 Docker 镜像文件安装 BibLatex 包

我在使用 Docker 镜像安装特定的 LaTeX 包时遇到了麻烦tlmgr

我有一个 Docker 文件,如下所示:

RUN tlmgr update --self 
RUN tlmgr install latexmk
RUN tlmgr install latex-bin
RUN tlmgr install collection-latex
RUN tlmgr install collection-latexrecommended

RUN tlmgr install tcolorbox
RUN tlmgr install environ
RUN tlmgr install trimspaces
RUN tlmgr install xstring
RUN tlmgr install fontaxes
RUN tlmgr install multirow
RUN tlmgr install glossaries
RUN tlmgr install glossaries-extra
RUN tlmgr install mfirstuc
RUN tlmgr install xfor
RUN tlmgr install datatool
RUN tlmgr install substr
RUN tlmgr install adjustbox
RUN tlmgr install collectbox
RUN tlmgr install xwatermark
RUN tlmgr install catoptions
RUN tlmgr install ltxkeys
RUN tlmgr install framed

RUN tlmgr install carlito
RUN tlmgr install charter
RUN tlmgr install gitinfo2

RUN tlmgr install pdfcomment
RUN tlmgr install datetime2
RUN tlmgr install tracklang
RUN tlmgr install marginnote
RUN tlmgr install soulpos
RUN tlmgr install soul
RUN tlmgr install ec
RUN tlmgr install pdftexcmds
RUN tlmgr install footmisc
RUN tlmgr install attachfile
RUN tlmgr install subfiles
RUN tlmgr install import
RUN tlmgr install picture

RUN tlmgr install pdflscape
RUN tlmgr install xcolor
RUN tlmgr install tools
RUN tlmgr install babel

由于我尝试以如下方式添加/安装 BibLaTeX 包,因此 Docker 映像文件一切正常:RUN tlmgr install biblatex但失败了。我使用的编辑器具有自动完成 Docker 命令的功能,即使编辑器找不到该命令 == RUN tlmgr install biblatex。实际上,我找不到此特定包的任何特定安装指南。

我做得对吗?还是我应该安装不同的包,例如latex-extra提供 BibLaTeX 包?

答案1

我已经通过输入解决了该问题:

RUN tlmgr install collection-bibtexextra

放入 Docker 镜像文件中。希望对 LaTeX 用户有所帮助。

相关内容