This is a question from the answer given in the question. I used the following codes given there,
\documentclass{article}
\usepackage[defernumbers=true]{biblatex}
\DeclareBibliographyCategory{cited}
\AtEveryCitekey{\addtocategory{cited}{\thefield{entrykey}}}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
@misc{C03,
author = {Cuthor, C.},
year = {2003},
title = {Charlie},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
Some text \autocite{A01,B02}.\cite{A01,B02}
\printbibliography[category=cited]% default title for `article` class: "References"
\printbibliography[title={Further Reading},notcategory=cited]
\end{document}
But while I am running, it is giving this output, not like whatever given in that answer.
Questions:
And one more important thing, it is not listing the reference items. Means I could not find the Reference in my article at last page.
In citation, it is not giving the numerical values, whereas it is giving the keys. I want the numerical values like
[1],[2], etc.
What is the problem? Help me
Technical Details:
- I am using Linux mint and Texstudio to compile this...

biberbetween runs ofpdflatex, have you done so? – Torbjørn T. Nov 12 '15 at 07:05