MikTeX 在標準 Docker 環境中遇到 bibtex 問題

MikTeX 在標準 Docker 環境中遇到 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」的意思是,手動安裝套件!兩者都不最大功率模組也不能在這裡獲得幫助。

相關內容