0

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.

enter image description here

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...
David
  • 1,964

1 Answers1

1

What is the compiler you use ?

Your problem comes from the compilation. I have no problem using TeXstudio and latexmk. There is no problem using an online compiler (example).

Using a terminal, I was able to have a correct pdf using :

pdflatex test.tex
biber test
pdflatex test.tex
pdflatex test.tex