I have a question about the Editor Name in the bibliography.
The Name is "Koordinierungsgruppe der CE in der Katholischen Kirche". The problem is that biblatex doesn't recognize it as one name but as the last name. So in the bibliography it always prints "Koordinierungsgruppe der CE in der Katholischen Kirche,". How is it possible to remove the comma? I already tried with extra {} but it doesn't work.
\documentclass[11pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[babel,german=guillemets]{csquotes}
%%%
%Biblatex-Einstellungen
%%%
\usepackage[backend=bibtex, bibstyle=alphabetic, citestyle=alphabetic, style=authortitle-ibid, pagetracker=false]{biblatex}
%%%
\DefineBibliographyStrings{german}{%Hg statt Hrsg.
editor ={\addspace\nopunct\mkbibparens{Hg\adddot}},
}
\renewcommand*{\labelnamepunct}{\addcolon\addspace}%Doppelpunkt nach Autor beim Zitieren
\DeclareFieldFormat{title}{#1\isdot}%Title nicht kursiv
\renewcommand*{\mkbibnamelast}[1]{\textsc{#1}} %Kapitälchen Nachnahme
\renewcommand*{\mkbibnamefirst}[1]{\textsc{#1}} %Kapitälchen Vornahme
%%%
\begin{filecontents}{literatur.bib}
@booklet{Geistmachtlebendig,
editor = {{Koordinierungsgruppe der CE in der Katholischen Kirche}},
title = {Der Geist macht lebendig},
year = {2007},
subtitle = {Theologische und pastorale Grundlagen der charismatischen Erneuerung in der katholischen Kirche Deutschlands}
}
\end{filecontents}
%%%
\bibliography{literatur}
\begin{document}
Text \footcite{Geistmachtlebendig}
\printbibliography
\end{document}
