Is it possible to always cite the full source after changing the reference, instead of using the shorted version with last-name, title verbose-ibid offers? I found this question by someone else. It seems to be possible to rewrite cite:short using \renewbibmacro*{cite:short} if that helps. Is it possible to just replace cite:short with cite:long/full or however it might be called?
My current setup: \usepackage[backend=biber,citestyle=verbose-ibid,natbib=true,bibstyle=authoryear]{biblatex}
Minimal working example:
\documentclass{article}
\usepackage[backend=biber,citestyle=verbose-ibid,natbib=true,bibstyle=authoryear]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{key1,
author = {Author, A.},
year = {2001},
title = {Title},
publisher = {Publisher},
}
@book{key2,
author = {Author, B.},
year = {2002},
title = {Title 2},
publisher = {Publisher 2},
}
\end{filecontents}
\begin{document}
Lorem ipsum dolor sit amet \footcite{key1}, consectetur adipiscing elit \footcite{key1}, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \footcite{key2}. Ut enim ad minim veniam \footcite{key2}, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat \footcite{key1}.
\printbibliography
\end{document}
I basicly want, that footnote 5 is "A. Author (2001). Title. Publisher." instead of "Author, Title."
