I am getting the above error whenever I try to compile my text and I just don't understand why it happens. The error occurs for every single \autocite command as well as at the end at \printbibliography[title=Literaturverzeichnis], once per unique entry in the bibliography. I am using a fresh MikTeX installation with installing packages on-the-fly enabled as I recently upgraded to Windows 10. Something seems to be wrong with my bibliography.bib
I haven't included any text snippets here because my colleague was able to compile the exact same text just fine. The error has to be somewhere in my MikTeX configuration because I am getting the same error with multiple editors. I am using biblatex with Biber and configured the editors to do so.
I really run out of ideas on how to fix this error. Does anyone had a similar issue in the past and has an idea on how to fix it?
As requested, here is some text.
master.tex
\documentclass[
12pt,
BCOR=5mm,
DIV=12,
headinclude=on,
footinclude=off,
parskip=half,
bibliography=totoc,
listof=entryprefix,
toc=listof,
pointlessnumbers,
plainfootsepline]{scrreprt}
\input{config}
\begin{document}
\input{example}
\ihead{}
\printbibliography[title=Literaturverzeichnis]
\cleardoublepage
\end{document}
Now, my config.tex:
% !TEX root = master.tex
\usepackage[backend=biber, style=apa]{biblatex}
\DeclareLanguageMapping{german}{german-apa}
\DefineBibliographyStrings{ngerman}{ %Change u.a. to et al. (german only!)
andothers = {{et\,al\adddot}},
}
\setlength{\bibparsep}{\parskip} %add some space between biblatex entries in the bibliography
\addbibresource{bibliography.bib} %Add file bibliography.bib as biblatex resource
Lastly, my example chapter and the entry in my .bib file
% !TEX root = master.tex
\chapter{Error}
This is an example error \autocite[]{Example}.
@Inbook{Example,
author="Various",
title="Example book",
year="2019"
}
The exact error message is this:
! Package keyval Error: uniquename undefined.
See the keyval package documentation for explanation.
Type H <return> for immediate help.
...
l.97 ...ntbibliography[title=Literaturverzeichnis]
Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.