[Tex/LaTex] Only Author+Title+Year in footnote

biblatex

I am using

\usepackage[backend=biber,bibencoding=utf8,style=verbose-inote,]{biblatex}

Is it possible to have only Author+Title+Year in the footnote, but the full reference in \printbibliography?

Best Answer

This can be done by using the authortitle citation style

\usepackage[backend=biber,bibencoding=utf8,style=verbose-inote,citestyle=authortitle]{biblatex}

and by patching (using the xpatch package, i.e., \usepackage{xpatch}) the cite bibmacro; namely:

\xapptobibmacro{cite}{\setunit{\nametitledelim}\printfield{year}}{}{}
Related Question