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 個命令:
pdflatex
建立一個輔助檔案,告訴 biber 需要哪些來源biber
建立一個輔助檔案,其中包含pdflatex
可以使用的所有源pdflatex
包含輔助檔案並建立 PDF