I have the following problem.
I would like to have the authors of the book like in the picture. Last name, first name, last name, first name, last name, first name.
With Overleaf however I only manage to get this output:

My code is following:
\documentclass[12pt,a4paper]{article}
\usepackage[german]{babel}
\usepackage[style=authortitle]{biblatex}
\usepackage{filecontents}
\addbibresource{myreferences.bib}
\begin{document}
This is an example text \footcite[Vgl.][S.33]{bilanz}
\printbibliography
\begin{filecontents}{myreferences.bib}
@book{bilanz,
address = {D{\"u}sseldorf},
author = {Baetge, J{\"o}rg and Kirsch, Hans-J{\"u}rgen and Thiele, Stefan},
edition = {15},
publisher = {IDW},
title = {Bilanzen},
year = {2019}}
\end{filecontents}
\end{document}
Thanks for your help and have a very pleasant weekend.



giveninits=trueas in\usepackage[style=authortitle,giveninits=true]{biblatex}– Luis Turcio Mar 26 '21 at 20:32