I still have issues with biblatex and biber, citations are not produced properly, a reference list is not set up. I also run pdflatex, biber, pdflatex (F6-F11-F6) in TeXStudios.
I implemented the code suggested here Citation and reference list isn't working, but it's still not working.
Could you have a look on my code, maybe you find the problem?
\documentclass[12pt,ngerman]{article}
\usepackage[ngerman]{babel}%added
\usepackage[backend=biber,style=apa]{biblatex}%mod.
\usepackage[german=quotes]{csquotes}%mod.
\usepackage[locale=US]{siunitx}
\DeclareLanguageMapping{ngerman}{ngerman-apa}
\addbibresource{Literatur.bib}
\begin{document}
\section{Test}
This is a test \cite{Test2000}.
\printbibliography
\end{document}
In Literatur.bib, I have properly implemented the Test2000 cite:
@Article{Test2000,
Title = {This is a testing title},
Author = {Test, V.},
Journal = {Example magazine},
Year = {2000},
Pages = {33-37},
Volume = {8}
}
Errors: Zeile 147: Citation 'Test2000' on page 6 undefined Zeile 182: Empty bibliography: There were undefined references. Please (re)run Biber on the file:(biblatex) AbschlussberichtX(biblatex) and rerun LaTeX afterwards

