Estou usando uma versão atual do TexLive para gerar referências em meus slides. Mas depois de mudar para o TexLive (dos pacotes do Ubuntu) minhas referências não aparecem mais no slide. Aqui um 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}
Recebo avisos durante a compilação, por exemplo
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
mas é gerado um "mwe.bbl", mas durante a compilação ele aparece
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.
Então eu acho que o biblatex não consegue ler o mwe.bbl corretamente. Como posso atualizar o biblatex para que funcione? Já tentei atualizar meu TeXLive como root
cd install-tl-20170314/
tlmgr update --self
tlmgr update --all
mas isso não ajudou.
desde já, obrigado
Responder1
Depois de atualizar meu Ubuntu para a versão mais recente (17.04), baixei o atualbebedorversão (2.7), extraí e executei no meu exemplo e as referências aparecem agora :)
Obrigado a todos pela ajuda