运行 PDFTexify 和 Bibtex 后不出现参考书目

运行 PDFTexify 和 Bibtex 后不出现参考书目

在我的代码中:

\documentclass{book}
\usepackage[refsection=section]{biblatex}
\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}

\begin{document}

\section{First}

Some  text \autocite{A01,B02}.

\printbibliography[heading=subbibliography]

\section{Second}

Some  text \autocite{A01,C03}.

\printbibliography[heading=subbibliography]

\end{document}

它的显示方式如下:

enter image description here

我已经无数次运行 PDFTexify 和 biber,但无法正常工作。参考书目没有打印出来,而且输出的\cite是文本而不是数字。任何帮助都将不胜感激。

相关内容