I have a list of publications I need to include in a document. For some of the publications authors are ordered alphabetically while for the others, this order depends on their contribution in the cited work. This list of publications looks like that:
@book{keyA,
author = {Author, A.},
year = {2001},
title = {Title},
publisher = {Publisher},
keywords = { conf },
}
@book{keyB,
author = {Author, B.},
year = {2001},
title = {Title},
publisher = {Publisher},
keywords = { journal },
}
@book{keyC,
author = {Author, C.},
year = {2001},
title = {Title},
publisher = {Publisher},
keywords = { conf },
}
@book{keyD,
author = {Author, D.},
year = {2001},
title = {Title},
publisher = {Publisher},
keywords = { conf },
}
And the .tex file is something like:
\documentclass{article}
\usepackage[sorting=none, style=ieee]{biblatex}
\addbibresource{biblio.bib}
\begin{document}
\nocite{*}
\section{Bibliography}
\printbibliography[keyword={conf},heading=none]
\end{document}
The file as output looks like the screenshot below.

What I'm trying to do is to add a small image I created (abc.png) at the beginning of the alphabetically ordered entries. Let's say entry "keyC" has a list of authors alphabetically ordered, the results would be like that:

I have no idea how to figure this out. I am not even sure whether it's doable... Maybe something with a \renewcommand and a way to identify the affected entries (Is it possible to have multiple keywords and filter the \printbibliography with just one of them?).
Any idea? Suggestion?

\documentclass, ending with\end{document}and including some sample bib entries. – gusbrs Jan 18 '18 at 19:31