如何使部分引文仅显示在参考书目中?

如何使部分引文仅显示在参考书目中?

我使用 biblatex-chicago 来编制参考书目。最近我决定为一些手稿来源添加描述,以便有人在参考书目中查找它们时能够知道它们是什么;我使用“附录”字段来保存这些信息,例如:

@misc{BnF000,
entrysubtype = {archival},
author = {{Bibliothèque nationale de France, Paris}},
shortauthor = {BnF},
title = {MS nouv. acq. fr. 000},
addendum = {collection on local history, 16th c.},
keywords = {unpublished},
}

文件中的引用非常简单:

    \documentclass[12pt,a4paper]{article}

    \usepackage[notes,shorthandibid,backend=biber]{biblatex-chicago}

    \addbibresource{Bibliography.bib}

    \begin{document}

    Here is a sentence.\autocite{BnF000}

    \end{document}

但是,这当然会将描述添加到脚注中,而这是不需要的。我可以让这一行仅适用于参考书目吗?非常感谢!

答案1

有一个addendum选项可以biblatex-chicago精确控制这一点。默认情况下,它设置为true。使其false产生:

脚注示例

示例参考

\documentclass[12pt,a4paper]{article}

\usepackage[notes,shorthandibid,backend=biber,addendum=false]{biblatex-chicago}

\addbibresource{Bibliography.bib}

\begin{document}

Here is a sentence.\autocite{BnF000}

\printbibliography

\end{document}

哪里Bibliography.bib

@Misc{BnF000,
  entrysubtype = {archival},
  author =   {{Bibliothèque nationale de France, Paris}},
  shortauthor =  {BnF},
  title =    {MS nouv. acq. fr. 000},
  addendum =     {collection on local history, 16th c.},
  keywords =     {unpublished}
}

相关内容