为何我的参考书目没有显示?

为何我的参考书目没有显示?

我正在使用 Sublime Text,每次我想添加参考书目时都会失败并显示警告:参考书目为空。我该如何解决这个问题?以下是我的代码:

\documentclass[12pt, a4paper, leqno]{article}
\usepackage{a4wide}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{appendix}
\usepackage{float, afterpage, rotating, graphicx}
\usepackage{epstopdf}
\usepackage{longtable, booktabs, tabularx}
\usepackage{fancyvrb, moreverb, relsize}
\usepackage{eurosym, calc}
\usepackage{amsmath, amssymb, amsfonts, amsthm, bm}
\usepackage{newtxtext,newtxmath}
\usepackage{caption}
\usepackage{mdwlist}
\usepackage{xfrac}
\usepackage{setspace}
\usepackage{xcolor}
\usepackage{subcaption}
\usepackage{minibox}
\usepackage{makecell}
\renewcommand{\theadfont}{\normalsize}
\usepackage{geometry}
\geometry{
 left=3cm,
 right=2cm,
 top=2cm,
 bottom=2cm,
}

\usepackage[backend=biber]{biblatex}
\addbibresource{refs.bib}
\usepackage[unicode=true]{hyperref}
\hypersetup{
    colorlinks=true,
    linkcolor=black,
    anchorcolor=black,
    citecolor=black,
    filecolor=black,
    menucolor=black,
    runcolor=black,
    urlcolor=black
}

\widowpenalty=10000
\clubpenalty=10000

\setlength{\parskip}{2ex}
\setlength{\parindent}{0ex}
\setstretch{1.5}

\begin{document}
abcdefghijklmn...

\newpage
\printbibliography
\end{document}

我的 bib 文件是

@article{acemoglu2008income,
  title={Income and democracy},
  author={Acemoglu, Daron and Johnson, Simon and Robinson, James A and Yared, Pierre},
  journal={American Economic Review},
  volume={98},
  number={3},
  pages={808--42},
  year={2008}
}

@book{baltagi2008econometric,
  title={Econometric analysis of panel data},
  author={Baltagi, Badi},
  year={2008},
  publisher={John Wiley \& Sons}
}

@article{kiviet1995bias,
  title={On bias, inconsistency, and efficiency of various estimators in dynamic panel data models},
  author={Kiviet, Jan F},
  journal={Journal of econometrics},
  volume={68},
  number={1},
  pages={53--78},
  year={1995},
  publisher={Elsevier}
}

答案1

您需要在文档中引用来源,以便它们出现在参考书目中。将您的 .tex 文件更改为:

\documentclass[12pt, a4paper, leqno]{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{refs.bib}
\begin{document}
a\autocite[\pno~1]{acemoglu2008income}

b\autocite{baltagi2008econometric}

cdefghijklmn...

\nocite{kiviet1995bias}

\newpage
\printbibliography
\end{document}

并且它应该可以工作。记得运行 pdflatex、biber、pdflatex、pdflatex 以获取正确的所有参考资料和注释。

考虑在下一个问题上发布一个最小工作示例(不包含所有额外的使用包);有时构建一个最小示例可以揭示问题所在。

相关内容