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 檔案的選項和附加欄位。