未使用 Tex Studio 打印参考书目

未使用 Tex Studio 打印参考书目

这是来自问题。 我使用了下面给出的代码,

\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}

但是当我运行时,它给出了这个输出,不像那个答案中给出的任何输出。

在此处输入图片描述

问题:

  • 还有一件重要的事情,它没有列出参考文献。这意味着我无法在文章的最后一页找到参考文献。

  • 在引用中,它没有给出数值,而是给出了键。我想要诸如[1][2]等数值。

有什么问题?帮帮我

技术细节:

  • 我正在使用 Linux mint 和 Texstudio 来编译这个...

答案1

你使用的编译器是什么?

你的问题出在编译上,我用 TeXstudio 和 latexmk 都没有问题,用在线编译器也没问题(例子)。

使用终端,我能够使用以下命令获得正确的 pdf:

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

相关内容