I've been pulling my hair out the last several days trying to configure biblatex to handle single and multiple collaborators in bibliography entries. Exasperated sigh.
Given this example:
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{LadymanRoss07,
author = {Ladyman, James and Ross, Don},
collaborator = {David Spurrett and Collier, John},
title = {Every Thing Must Go: Metaphysics Naturalized},
publisher = {Oxford University Press},
year = {2007}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
\printbibliography
\end{document}
how can I elegantly achieve:
Ladyman, James and Don Ross (2007). Every Thing Must Go: Metaphysics Naturalized.
With collaborators: David Spurrett and John Collier. Oxford University Press.
in the output, and With collaborator: if only one collaborator were involved?
FYI, my current most unsatisfactory "fix" involves changing collaborator = to annotator = wherever it appears in my .bib files, and adding
\DefineBibliographyStrings{english}{
withannotator = With collaborators:\addspace ,
}
to my biblatex configuration code. (This is clearly an awful "solution" in a multitude of ways!)
