TexLive 下没有关于 biber/biblatex 的引用

TexLive 下没有关于 biber/biblatex 的引用

我正在使用当前版本的 TexLive 来生成幻灯片中的参考资料。但是在切换到 TexLive(从 Ubuntu 软件包)后,我的参考资料不再出现在幻灯片中。这里是 NMWE:

\documentclass{beamer}
\usepackage[backend=biber]{biblatex}
\bibliography{bib_rosetta}
\begin{document}
\begin{frame}
    \begin{refsection}%
        \nocite{neyman_use_1928}
        \nocite{radhakrishna_rao_large_1948}
        \nocite{wald_tests_1943}
        \printbibliography%
    \end{refsection}%
\end{frame}
\end{document}

我在编译过程中收到警告,例如

Prozess gestartet: biber "mwe"

INFO - This is Biber 2.4
INFO - Logfile is 'mwe.blg'
INFO - Reading 'mwe.bcf'
WARN - Warning: Found biblatex control file version 3.3, expected version 3.0

但生成了“mwe.bbl”,但在编译过程中它出现

Package biblatex Info: Trying to load bibliographic data...
Package biblatex Warning: File 'mwe.bbl' is wrong format version - expected 2.8
...
LaTeX Warning: Citation 'wald_tests_1943' undefined on input line 14.
LaTeX Warning: Empty bibliography on input line 14.

所以我猜 biblatex 无法正确读取 mwe.bbl。我该如何更新 biblatex 才能让它正常工作?我已经尝试以 root 身份更新我的 TeXLive

cd install-tl-20170314/
tlmgr update --self
tlmgr update --all

但这没有帮助。

提前致谢

答案1

将我的 Ubuntu 更新到最新版本(17.04)后,我下载了当前的比伯版本(2.7),提取它并在我的示例上运行它,现在出现参考资料:)

感谢大家的帮助

相关内容