I have issues with setting up citations in the text itself and creating a reference list. I used jabref to create citations and I saved the bib-data as Literatur.bib in the folder in which I have all other files. Shortended Code:
\documentclass[12pt]{article}
\usepackage[backend=biber,style=apa,babel=other]{biblatex}
\usepackage[babel,german=quotes]{csquotes}
\usepackage[locale=US]{siunitx}
\DeclareLanguageMapping{ngerman}{ngerman-apa}
\addbibresource{Literatur.bib}
\begin{document}
This is supposed to be a quote here \cite{Example2000}.
\newpage
\printbibliography
\end{document}
In text, the citation appears as Example2000 in bold letterings, not as supposed in (Example, 2000). A reference list is not set up.
Warnings:
'babel' option is deprecated, use 'autolang' instead. Citation 'Example2000' on page 4 undefined Empty bibliography There were undefined references. Please (re)run Biber on the file:(biblatex) Abschlussbericht(biblatex) and rerun LaTeX afterwards.
In the bib-data, the reference looks like:
@Article{Example2000,
Title = {Test},
Author = {Example, V.},
Journal = {Example magazine},
Year = {2000},
Pages = {33-37},
Volume = {8},
}
What am I doing wrong? :(
Please (re)run Biber on the file .... – moewe May 09 '14 at 05:11