标准 Docker 环境中的 MikTeX 与 bibtex 存在问题

标准 Docker 环境中的 MikTeX 与 bibtex 存在问题

我遇到了奇怪的bibtex行为,我认为它无法正常运行。

症状:

No file main.aux.
No file main.bbl.

LaTeX Warning: Citation 'key' on page 1 undefined on input line 17.    

考虑一下最小工作示例从一个被接受的答案。

\documentclass{article}
\usepackage[style=authoryear-comp]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@book{key,
  author = {Author, A.},
  year = {2001},
  title = {Title},
  publisher = {Publisher},
}
\end{filecontents}

\begin{document}

\cite{key}

\printbibliography

\end{document}

如何重现:

UPD“安装 biber”意味着手动安装软件包!两者都不是多层印刷机这里也没有 apt-get 的帮助。

相关内容