Dies führt dazu, daß das Dokument nicht mehr kompiliert, wenn babel verwendet wird.
Minimalbeispiel:
\RequirePackage{filecontents}
\begin{filecontents*}{Bib.bib}
@incollection{article1,
xref = {book1},
author = {Author, Auth},
title = {{"}ABC{"} Title 1},
pages = {1--2},
editor = {Editor, Ed},
booktitle = {Book Title 1},
year = {2010}
}
@book{book1,
author = {Editor, Ed},
year = {2010},
title = {Book Title 1}
}
\end{filecontents*}
\documentclass{scrreprt}
\usepackage[german]{babel}
\usepackage[backend=bibtex8,sortlocale=de,style=authoryear,dashed=false,mincrossrefs=1]{biblatex}
\bibliography{Bib}
\begin{document}
\parencite{article1}
\printbibliography
\end{document}
Gibt es dafür eine Lösung?


