When combining biblatex with beamerposter, I get a weird symbol in place of the bibliography reference counter. Here's the minimum code I used to reproduce my issue.
MWE:
\documentclass[t]{beamer}
\usepackage[orientation=landscape,size=a1,scale=1.4]{beamerposter}
\usepackage[absolute,overlay]{textpos}
\usepackage[backend=biber, maxbibnames=2, maxcitenames=2, sortcites=true, style=authoryear]{biblatex}
\renewcommand*{\bibfont}{\small}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{dr1957cat,
title={The Cat in the Hat},
author={Seuss, Dr. and Ginsburg, Avi},
series={Beginner books},
year={1957},
publisher={Random House}
}
\end{filecontents*}
\addbibresource{\jobname.bib}
\usetheme{default}
\useinnertheme{rectangles}
\begin{document}
\begin{frame}[label={sec:org1b2094c}]{}
\begin{columns}
\begin{column}{0.9\columnwidth}
\begin{block}{Introduction}
Fusce sagittis, libero non molestie mollis, magna orci ultrices dolor, at vulputate neque nulla lacinia eros. Aliquam erat volutpat. Nunc eleifend leo vitae magna. \cite{dr1957cat} In id erat non orci commodo lobortis. Proin neque massa, cursus ut, gravida ut, lobortis eget, lacus.
\end{block}
\begin{block}{References}
\printbibliography
\end{block}
\end{column}
\end{columns}
\end{frame}
\end{document}
Here's a picture of the problem, note the small "paper" symbol instead of the reference counter:
For completeness, I tried compiling the document with both pdflatex and xelatex using the following commands:
latexmk -pdflatex='pdflatex -shell-escape -interaction nonstopmode' -pdf -bibtex -f %f"
and
latexmk -pdflatex='xelatex -interaction nonstopmode' -pdf -bibtex -f %f"
Texlive 2016 on a CentOS machine.
Has anyone seen this before? What can I do to fix this? Thank you.
