I am writing a dissertation at the Leibniz Universität Hannover Germany. I need "ibid" ("ebd." in German) so I took authoryear-icomp for biblatex. Citestyle looks like: "(vgl. Bauer/Hurrelmann 2021, S. 21)" and "(ebd. S. 23)". My problem is the bibliography it has to look like:
The problem is the edition in superscript behind the title.
My sample Code:
\documentclass[a4paper,12pt,ngerman,oneside,usegeometry,parskip=false]{scrartcl} %listof=entryprefix,listof=leveldown,listof=totoc, bibgerm,
\usepackage{geometry}
\usepackage[ngerman]{babel}
\usepackage{unicode-math} %lädt fontspec,
%%%%%%%%%%%%%%%%%%%%%%%%% Bibliographie
\usepackage[backend=biber, giveninits=true, maxcitenames=2, maxbibnames=5, url=false, isbn=false, doi=false, dashed=false, style=authoryear-icomp, hyperref=true, sortcites=true]{biblatex}
\DeclareDelimFormat{multinamedelim}{\addslash}% Slash Autoren Meyer/Müller
\DeclareDelimAlias{finalnamedelim}{multinamedelim}% Slash Meyer/Müller
\DeclareDelimFormat[parencite]{multinamedelim}{\slash}% Hannover Müller/Meier
\DeclareDelimAlias*[parencite]{finalnamedelim}{multinamedelim}% Hannover Müller/Meier
\AtEveryBibitem{% without publisher
\clearlist{publisher}
\clearfield{pagetotal}
}
\renewcommand{\labelnamepunct}{\addcolon\space} %Doppelpunkt nach (2023):;
\DefineBibliographyStrings{ngerman}{ %anstatt und andere : et all
andothers = {{et,al\adddot}},
}
\addbibresource{test.bib}
\begin{document}
\begin{filecontents*}{test.bib}
@book{blankertz1991,
title = {Theorien und {{Modelle}} der {{Didaktik}}},
author = {Blankertz, Herwig},
date = {1991},
edition = {13},
publisher = {{Juventa-Verlag}},
}
@book{bauer2021,
title = {Einführung in die Sozialisationstheorie: das Modell der produktiven Realitätsverarbeitung (MpR)},
shorttitle = {Einführung in die Sozialisationstheorie},
author = {Bauer, Ullrich and Hurrelmann, Klaus},
date = {2021},
edition = {14},
publisher = {{Beltz}},
location = {{Weinheim Basel}},
abstract = {Einführung in die psychologischen und soziologischen Theorien der Sozialisation. (ekz)},
isbn = {978-3-407-25885-4},
langid = {german},
pagetotal = {350},
file = {/home/dirk/Zotero/storage/FG5DYMBX/bauer2021.pdf}
}
\end{filecontents*}
\textcite{blankertz1991}, \textcite{bauer2021}
\printbibliography
\end{document}

