我正在使用當前的 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),提取它並在我的範例上運行它,現在出現參考:)
感謝大家的幫助