Bisher behelfe ich mir dadurch, dass ich den ersten Eintrag immer mit \footfullcite zitiere und folgende nur mit \footcite.
Das wird aber spätestens dann zum Problem, wenn ich anfange Text umzustellen, und die Reihenfolge durcheinander kommt.
Daher bin ich sehr an einer eleganteren Lösung interessiert.
\begin{filecontents}{\jobname.bib} @book{aristotle:physics, author = {Aristotle}, title = {Physics}, date = 1929, translator = {Wicksteed, P. H. and Cornford, F. M.}, publisher = {G. P. Putnam}, location = {New York}, keywords = {primary}, langid = {english}, langidopts = {variant=american}, shorttitle = {Physics}, annotation = {A \texttt{book} entry with a \texttt{translator} field}, } \end{filecontents} \documentclass{scrreprt} \usepackage{selinput} \SelectInputMappings{ adieresis={ä}, germandbls={ß}, } \usepackage[ngerman]{babel} \usepackage[T1]{fontenc} \usepackage[backend=biber,style=authoryear-icomp, ibidpage=true]{biblatex} \bibliography{\jobname.bib} \usepackage[babel,german=quotes,threshold=3]{csquotes} \begin{document} Das erste Zitat\footfullcite{aristotle:physics}\par So funktioniert auch das zweite Zitat\footcite{aristotle:physics}\par So funktioniert das dritte Zitat leider nicht\footfullcite{aristotle:physics} \end{document}