如何引用参考文献

如何引用参考文献

我正在用 LaTeX 写我的博士论文,显然想包含参考书目。但是,我完全无法做到这一点。我没有尝试让它在我的多个论文 LaTeX 文件中工作,而是制作了一个最小工作示例,但甚至连这个都不起作用!有人能帮我告诉我我做错了什么吗?顺便说一句,我想要一个作者年份引用样式。没有数字,只有文本中作者年份的引用和末尾按字母顺序排列的参考列表。

这是我的最小工作示例example.tex

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber,style=alphabetic,citestyle=authoryear]{biblatex}
\addbibresource{library.bib}

\begin{document}
This is a test \cite{bakerstair}.

\printbibliography
\end{document}

这是我的文件的内容library.bib

@Article{bakerstair,
  author = {Baker, Doran J. and Stair, A. T.},
  title = {Rocket measurements of the altitude distributions of the hydroxyl airglow},
  journal = {Physica Scripta},
  year = {1988},
  volume = {37},
  pages = {611-622},
}

在 TeXMaker 中运行 PdfLaTeX + Bib(la)tex + PdfLaTeX(x2) + View Pdf 后收到错误消息:

example.tex. Warning. line 9. Citation 'bakerstair' on page 1 undefined.
example.tex. Warning. line 11. Empty bibliography.
example.tex. Warning. line 1. There were undefined references.
example.tex. Warning. line 1. Please (re)run Biber on the file: example and rerun LaTeX afterwards.

我不知道我做错了什么,这让我发疯。

相关内容