要开始参考书目,您需要定义您的来源。创建一个数据库文件(如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个命令:
pdflatex 创建一个辅助文件,告诉biber需要哪些来源
biber 用所有可以使用的源创建一个辅助文件 pdflatex
pdflatex 包括辅助文件并创建PDF
在CTAN的程序包文档中找到更多有关bib文件的选项和其他字段。