TexLive에서 biber/biblatex에 대한 참조가 없습니다.

TexLive에서 biber/biblatex에 대한 참조가 없습니다.

내 슬라이드에서 참조를 생성하기 위해 현재 TexLive 버전을 사용하고 있습니다. 그러나 Ubuntu 패키지에서 TexLive로 전환한 후에는 내 참조가 더 이상 슬라이드에 표시되지 않습니다. 여기 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가 작동하도록 어떻게 업데이트할 수 있나요? 이미 TeXLive를 루트로 업데이트하려고 시도했습니다.

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

그러나 이것은 도움이 되지 않았습니다.

미리 감사드립니다

답변1

Ubuntu를 최신 버전(17.04)으로 업데이트한 후 현재 버전을 다운로드했습니다.비버버전(2.7)을 추출하여 내 예제에서 실행하면 이제 참조가 표시됩니다. :)

도움을 주신 모든 분들께 감사드립니다

관련 정보