Does refcheck work with biblatex?
If not: how do I print all uncited references using biblatex?
Using the MWE from here, I can display all the uncited references.
When I try to do the same using biblatex, refcheck doesn't appear to work. I don't see any error messages when I compile, though. This is my .tex file:
\documentclass{report}
\usepackage{biblatex}
\usepackage{refcheck}
\bibliography{refs}
\begin{document}
Hello world \cite{foo2012a}.
\nocite{*}
\printbibliography
\end{document}
Which is producing:

I am (hopefully) expecting to see:

How can I make refcheck work with biblatex or how can I achieve the same thing in a different way (display all references that are not cited in my document)?
\nocite{*}and print bibliography again and compare. Might be easier and faster than trying to solve this problem. – Mythio Apr 03 '13 at 10:51refcheckwon't work withbiblatex, but you could adapt this solution. – mafp Apr 03 '13 at 10:55