I want to customize my bibliography and format the names in italics. But I do not want to format the editor's name in italics.
To format the names, I use the code below. But how can I differ the author's and editor's names?
How can I change the title to normalfont?
\documentclass{scrbook}
\begin{filecontents*}{test.bib}
@book{Test.2021,
author = {Mustermann, Thomas},
year = {2021},
title = {Mustertitel},
editor = {Musterfrau, Erika},
}
\end{filecontents*}
\usepackage[backend=biber, style=authoryear-ibid, bibstyle=authortitle]{biblatex}
\addbibresource{test.bib}
\renewcommand{\mkbibnamefamily}[1]{\mkbibemph{#1}}
\renewcommand{\mkbibnamegiven}[1]{\mkbibemph{#1}}
\begin{document}
Dies ist ein Test.\footcite{Test.2021}
\printbibliography
\end{document}
