I am using Beamer with biblatex.
When I use the code below, it produces the following slide.
I would like to replace the tiny journal picture by [FC1] for the first category (then [FC2] for the second reference in the first category etc...) and [SC1] for the second category (then [SC2], etc...). Is it possible?
As pointed out in comment, the solution proposes in How do I get numbered entries in a beamer bibliography do not work here. If I use
\setbeamertemplate{bibliography item}{[\theenumiv]}
I get [0] in front of each article. If I use
\setbeamertemplate{bibliography item}{\insertbiblabel}
I get nothing in front of each article. In addition, I would like to have FC or SC for my reference depending of the keyword of each article.
The code
\documentclass[10pt]{beamer}
\usepackage{beamerthemesplit}
\usepackage[english,french]{babel}
\usepackage{xcolor}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[backend=bibtex,style=authoryear, defernumbers=true]{biblatex}
\addbibresource{bib.bib}
\usetheme{default}
\begin{document}
\begin{frame}
\begin{itemize}
\item First category
\nocite{*}
\printbibliography[prefixnumbers=FC, heading=none,keyword=fstcat]
\item Second category
\printbibliography[prefixnumbers=SC, heading=none,keyword=sndcat]
\end{itemize}
\end{frame}
\end{document}
The .bib file
@article {test1,
AUTHOR = {LastName1, FirstName1},
TITLE = {A long title that says nothing interesting},
JOURNAL = {Big journal},
VOLUME = {1},
YEAR = {1111},
NUMBER = {1},
PAGES = {1--111},
keywords={fstcat}
}
@article {test2,
AUTHOR = {LastName2, FirstName2},
TITLE = {A long title that says nothing interesting again},
JOURNAL = {Very Big journal},
VOLUME = {1},
YEAR = {1111},
NUMBER = {1},
PAGES = {1--111},
keywords={sndcat}
}

biblatex. – TeXnician Apr 21 '17 at 09:34style=authoryearyou won't get labels like 'FC2', you need to usestyle=numericor similar. Note also thatprefixnumberis no longer a valid option to\printbibliographythe option is now calledlabelprefixand needs to be passed to a refcontext environment. – moewe Apr 21 '17 at 09:35