When I'm trying to compile a bibliography, I keep getting the "undefined control sequence" error. I'm guessing this is due to some problem in the bib file, but I can't figure out what's wrong with it.
Tex code:
\documentclass[man]{apa6}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt,backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{ref2.bib}
\usepackage{setspace}
\title{ORT}
\shorttitle{Ortho}
\author{name}
\affiliation{univ name}
\leftheader{surname}
\authornote{None}
\abstract{None}
\listfiles
\begin{document}
Blah blah blah \parencite{Smith1999}
\printbibliography
\end{document}
Bib entry:
@article{Smith1999,
author = {Smith, Bob},
journal = {Journal},
number = {1},
pages = {47--84},
title = {{Article Name}},
volume = {14},
year = {1999}
}
I keep getting the error
! Undefined control sequence.
<argument> \printdateextralabel
l.20 \end
{document}
?
What am I doing wrong?
\printbibliographyline doesn't work, period. This is really frustrating... – Gabrielle Sep 16 '16 at 06:04\printbibliographyline, the inline citation works and the file compiles successfully to pdf. – Gabrielle Sep 16 '16 at 06:10\documentclass{article} \usepackage{biblatex} \addbibresource{ref2.bib} \begin{document} \parencite{Smith1999} \printbibliography \end{document}and not more. Clean temp files and re-run biber as you will get an error the first time compiling this without the apa style. – Manuel Schmidt Sep 16 '16 at 06:24\newcommand\printdateextralabel{XXXX}to your document and wait until the new release is there. – Ulrike Fischer Sep 16 '16 at 07:59biblatex-apa7.0 which should be available soon. – moewe Sep 16 '16 at 08:00