芝加哥 作者-日期 tufte-book 书目

芝加哥 作者-日期 tufte-book 书目

我正在尝试以 Chicago Author-Date 格式格式化 tufte-book 文档中的参考书目。文档本身没有引文。有人能帮忙吗?语法如下:

\begin{document}

\maketitle

\tableofcontents

\input{tex/0_theground}
\input{tex/goldstein}
\input{tex/patterson}
\input{tex/barrett}

\usepackage[authordate,backend=biber,bookpages=false,doi=false,isbn=false,url=false]{biblatex-chicago}
\bibliography{bib/test}
\nocite{*}

\end{document}

答案1

您应该使用\addbibresource(您需要包含文件扩展名.bib)而不是\bibliography,并且您必须使用来打印参考书目\printbibliography

此外,您需要tufte-book使用类选项进行调用nobib才能完成biblatex工作。

结果应如下所示:

\documentclass[nobib]{tufte-book}
\usepackage[authordate,
            backend=biber,          % You need to run biber instead of bibtex
            bookpages=false,
            doi=false,
            isbn=false,
            url=false]{biblatex-chicago}

\addbibresource{bibliography.bib}   % You need to include the file extension, e.g. ".bib"

\begin{document}
    Test

    \nocite{*}
    \printbibliography
\end{document}

相关内容