I need to write an article with APA citations. I have sample code that works fine with style=authoryear, but if I switch to style=apa I get the following error message:
Error Line 21 ! Undefined control sequence.<argument> \printdateextralabel
I'm using TexMaker with biber. I've gone through example after example and I can't figure out what's wrong. I suspected it was with TexMaker or MiKTeX, but I just uninstalled and reinstalled both programs and I'm having the same issue. The same error message always pops up with the line number after \printbibliography. I tried copying corrected MWE's from other questions (such as this one answered by Alan Munn) and I get the same error. I included a MWE and my .bib file (borrowed from another thread) below.
File MWE:
\documentclass[article,12pt,letterpaper]{apa6}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa,natbib=true,backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\title{Annotated Bibliography 1}
\author{Joe Smith}
\affiliation{Spectacular University}
\addbibresource{bib.bib}
\begin{document}
\abstract{abstract goes here}
\maketitle
this is a test
\cite{Kim1999188}
\printbibliography
\end{document}
bib:
@article{Kim1999188,
title = "Absorption of water vapour into lithium bromide-based solutions with additives using a simple stagnant pool absorber ",
journal = "International Journal of Refrigeration ",
volume = "22",
number = "3",
pages = "188 - 193",
year = "1999",
note = "",
issn = "0140-7007",
doi = "10.1016/S0140-7007(98)00061-9",
url = "http://www.sciencedirect.com/science/article/pii/S0140700798000619",
author = "Jin-Soo Kim and Huen Lee and Sun Il Yu",
keywords = "Absorption",
keywords = "Water",
keywords = "Lithium bromide",
keywords = "Absorption",
keywords = "Eau",
keywords = "Bromure de lithium "
}
Here is a link to my Log File.

