Using biblatex with author-year style, I need a bibliography which outputs not only the normal bibliography entry, but the short citation form like from \cite as well, seperated by a colon:
The example above is simply made with
\cite{96}:
\printbibliography[heading=none]
but of course I can't do this for every single entry of my bibliography, and there should be no linebreak behind the colon. How can I achieve this with biblatex?
MWE
\documentclass{scrartcl}
\usepackage{filecontents}
\begin{filecontents}{test.bib}
@book{3,
editor = {Ball, M.},
title = {The Celtic Languages},
publisher = {Routledge},
location = {London},
date = {1993},}
@book{5,
author = {Borooah, A.},
title = {English-Sanskrit Dictionary},
publisher = {Publication board},
location = {Assam},
date = {1971},}
\end{filecontents}
\usepackage[backend=biber,style=authoryear,useprefix=true,dashed=false]{biblatex}
\addbibresource{test.bib}
\setlength\parindent{0pt}
\begin{document}
I need the bibliography to look like this (but with the author's surname first after the colon):
\cite{3}: \fullcite{3}
\cite{5}: \fullcite{5}
\printbibliography
\end{document}


style=authoryearor something more fancy, do you have any other modifications to yourbiblatexsetup that could be relevant etc. etc.) – moewe Oct 28 '16 at 09:26\cite{foo1}: \fullcite{foo1}\newline\cite{foo2}: \fullcite{foo2}\newline …is the best I got so far… – dessert Oct 28 '16 at 09:31\fullcite. Can you check my edited first comment again? Does the linked question help? – moewe Oct 28 '16 at 09:46