標準 Docker 環境内での Bibtex に関する MikTeX の問題

標準 Docker 環境内での Bibtex に関する MikTeX の問題

奇妙な動作が発生し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}

再現方法:

  • インストールMikTex Docker環境;
  • 上記のファイルに対して環境を実行します。
  • 上記のエラーが表示されます。

UPD「biberのインストール」は、パッケージの手動インストールを意味します。MPMapt-get のヘルプもここにはありません。

関連情報