biber 的基本参考书目

要开始参考书目,你需要定义你的来源。创建一个数据库文件 (如 sources.bib)并包含一些内容:

@book{Doe1993,
    Author = {John Doe},
    Publisher = {Earth University},
    Title = {Creating a bibliography with biber},
    Year = {1993}}

然后,你可以在主文档中包含数据库文件,并引用新的源(Doe1993)。

\documentclass{article}

% Include the biblatex package and tell it to use biber as a backend.
% Without specifying the backend, it assumes biber.
\usepackage[backend=biber]{biblatex}

% Define where biber can find your sources
\addbibresource{sources.bib}

\begin{document}
"Biber isn't that difficult." \cite{Doe1993}
% Use \cite{source-ID} to generate a citation

% Print the bibliography
\printbibliography

\end{document}

要编译文档,你需要按顺序运行 3 个命令:

  1. pdflatex 创建一个辅助文件,告诉 biber 需要哪些来源
  2. biber 创建一个辅助文件,其中包含 pdflatex 可以使用的所有源
  3. pdflatex 包含辅助文件并创建 PDF

StackOverflow 文档

在 CTAN软件包文档中找到更多用于 bib 文件的选项和附加字段。