I need the footcite to display all authors like this.
However I only got so far that it shows only the last name of the first author. In this case "Horschitz".
Here my code.
\documentclass[12pt,a4paper]{article}
\usepackage[german]{babel}
\usepackage[backend=biber,style=authoryear,giveninits=true,sorting=nyt,]{biblatex}
\usepackage{filecontents}
\AtBeginBibliography{%
\renewcommand*{\finalnamedelim}{%
\ifnumgreater{\value{liststop}}{2}{\finalandcomma}{}%
\addspace&\space}%
}
\let\origparencite\parencite
\renewrobustcmd{\parencite}{%
\AtNextCite{%
\renewcommand*{\finalnamedelim}{%
\ifnumgreater{\value{liststop}}{2}{\finalandcomma}{}%
\addspace&\space}%
}%
\origparencite%
}
\DeclareNameAlias{sortname}{family-given}
\begin{filecontents}{myreferences.bib}
@book{bilstr,
address = {Stuttgart},
author = {Horschitz, Harald and Gro{\ss}, Walter and Fanck, Bernfried and Guschl, Harald and Kirschbaum, J{"u}rgen and Schustek, Heribert},
date-added = {2021-03-27 23:38:45 +0100},
shorttitle ={Bilanzsteuerrecht},
date-modified = {2021-03-27 23:41:36 +0100},
edition = {14},
publisher = {},
series = {Finanz und Steuern},
title = {Bilanzsteuerrecht und Buchf{"u}hrung},
volume = {1},
year = {2016}}
\end{filecontents}
\addbibresource{myreferences.bib}
\begin{document}
This is an example text \footcite[Vgl.][S.33]{bilstr}
\printbibliography
\end{document}
