This is recent behavior, but I couldn't figure out since exactly when this is happening:
% !TEX encoding = UTF-8 Unicode
% !TEX TS-program = pdflatexmk
\documentclass{beamer}
\usepackage{filecontents}
\begin{filecontents}{foo.bib}
@misc{Fallick2004a,
author = {Fallick, Bruce and Fleischman, Charles A.},
title = {{Employer-to-Employer Flows in the U.S. Labor Market: The Complete Picture of Gross Worker Flows}},
url = {http://www.federalreserve.gov/econresdata/researchdata/feds200434.html},
year = {2004}
}
\end{filecontents}
\usepackage[
backend=biber,
style=authoryear-comp,
natbib=true
]{biblatex}
\bibliography{foo}
\begin{document}
\begin{frame}
\citet{Fallick2004a}
\end{frame}
\end{document}
Output:
Fallick and Fleischman, (2004)
This happens for all sorts of references, but only textcite and citet, not citep. I tried re-installing
sudo apt-get install texlive-full
to no avail.
texlivepackages from Debian/Ubuntu and installing the latest TeXLive distribution separately. – gernot Sep 19 '16 at 15:26biblatex. It is fixed now, you should consider updating. (If you use the repository version of TeX live, which often is outdated, you could consider switching to a "vanilla" TeX live: How to install “vanilla” TeXLive on Debian or Ubuntu?). See https://github.com/plk/biblatex/issues/373, I can't reproduce your output withbiblatex3.5 – moewe Sep 19 '16 at 15:29natbib=truefor thebiblatexpackage). I installed TL2016 only today, so maybe it is a recent change? I havebiblatex 2016/09/17 v3.6installed. – gernot Sep 19 '16 at 15:33biblatexupdate, so I assume it will be fixed. (Yes, fixed now.) – Alan Munn Sep 19 '16 at 15:35