有趣的是,我感觉我以前也遇到过这种情况。我似乎不知道哪里出了问题。
梅威瑟:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[danish]{babel}
\usepackage[notes,backend=biber,isbn=false]{biblatex-chicago}
\usepackage{filecontents}
\usepackage{csquotes}
\begin{filecontents}{jobname.bib}
@Book{test1,
author = {Bar, Foo},
title = {Foo},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
year = {1994},
annote = {My annotation}
}
\end{filecontents}
\bibliography{jobname.bib}
\begin{document}
Foo\footcite{test1}
\printbibliography
\nocite{*}
\end{document}
我想要的是参考书目条目末尾的“注释”字段。不知道为什么它不起作用。你可以用以下方法进行编译:
latexmk -pdf mwe
如果你想。
答案1
标准样式annotation
忽略该字段biblatex
此字段在实现带注释书目样式时可能很有用。并非所有标准书目样式都使用它。
biblatex
文档,第 15 页,§2.2.2数据字段。
您可以改用addendum
或note
字段
addendum
字段(文字):打印在条目末尾的杂项书目数据。这与字段类似note
,只是打印在书目条目的末尾。
biblatex
文档,第 15 页,§2.2.2数据字段。
note
字段(文字)不适合其他字段的杂项书目数据。此note
字段可用于以自由格式记录书目数据。诸如“1831 年伦敦版重印”之类的出版事实是注释字段的典型候选。
biblatex
文档,第 15 页,§2.2.2数据字段。
biblatex-chicago
有annotation
选择
应 Emil Salim 的要求,
biblatex-chicago-notes
自 0.9 版起,添加了一个包选项(见annotation
下文第 4.4.3 节),允许您生成带注释的参考书目。此类参考书目的格式目前相当基础,但它符合手册的最低准则(14.59)。[...] 请将该annotation
选项视为一项正在进行的工作,但现在可以使用。(注意:BibTeX 字段annote
是它的别名。)
biblatex-chicago
文档,第 23 页,§4.2输入字段。
和
应 Emil Salim 的要求,我添加了
biblatex-chicago
生成带注释书目的功能。如果您启用此选项,那么您的annotation
(或annote
)字段的内容将在书目参考之后打印。(您也可以使用外部文件来存储注释 -biblatex.pdf
有关如何执行此操作的详细信息,请参阅 §3.11.8。)此功能目前处于测试状态,因此在使用它之前,请查看该annotation
字段的文档。
biblatex-chicago
文档,第 58 页,§4.4.3样式选项 – 序言。
因此,在 MWE 中,您所要做的就是使用biblatex-chicago
选项annotation
加载
\usepackage[notes,backend=biber,isbn=false,annotation]{biblatex-chicago}
平均能量损失
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[notes,backend=biber,isbn=false,annotation]{biblatex-chicago}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{wilde}
\printbibliography
\end{document}