My sample document is:
Code: Select all
\documentclass{article}
\usepackage[backend=bibtex,style=apa]{biblatex}
\bibliography{demo}
\begin{document}
Book by \textcite{AAA}.
Book by \parencite{AAA}.
\printbibliography
\end{document}
Code: Select all
@book{AAA,
title={{This is a long title to see if the hanging indent works or if it fails, I'm guessing it will fail}},
author={John Smith},
publisher={MyPublishing},
year={2005}
}
Code: Select all
! Undefined control sequence.
l.231 \DeclareStyleSourcemap
{
? x
If I take out the backend=bibtex I'm told to use biber, so I run biber on my .bib file and then pdflatex fails with
! Undefined control sequence.
<argument> \mkbibdateapalongextra
Any ideas what I missing?
Cheers,
Geoff Russell