这个顺序正确吗?使用 biblatex-chicago.sty

这个顺序正确吗?使用 biblatex-chicago.sty

My codes are follows:

content of test.bib

@article{baker_saxe_tenenbaum09,
Author = {C. L. Baker and J. Tenenbaum and R. Saxe},
Date-Added = {2014-01-30 12:11:35 +0100},
Date-Modified = {2014-02-05 23:44:19 +0100},
Journal = {Cognition},
Number = {3},
Pages = {329--349},
Title = {Action Understanding as Inverse Planning},
Volume = {113},
Year = {2009}}

@inproceedings{baker_tenenbaum_saxe06,
Author = {C. L. Baker and J. Tenenbaum and R. Saxe},
Booktitle = {Advances in Neural Information Processing Systems},
Date-Added = {2014-01-30 12:16:28 +0100},
Date-Modified = {2014-02-01 00:11:49 +0100},
Publisher = {Cambridge, MA: MIT Press},
Title = {Bayesian Models of Human Action Understanding},
Volume = {18},
Year = {2006}}

content of test.tex

\documentclass{book}
\usepackage[notes,backend=biber]{biblatex-chicago}%
\makeatletter
\AtEveryBibitem{\global\undef\bbx@lasthash}%
\makeatother
\addbibresource{test.bib}

\begin{document}

\textcite{baker_saxe_tenenbaum09} and \textcite{baker_tenenbaum_saxe06}

\printbibliography

\end{document}

Output

在此处输入图片描述

I just want to confirm the ordering of the references are correct? As, both entries author names are same, and the year only different. I thought that the year 2006 entry should come first, but I'm not sure. Any expert confirm please...

答案1

tl;dr Yes, this appears to be correct behaviour for a bibliography in Chicago style.


biblatex-chicago's notes style sorts by name (author, editor, ...), title and year in that order.

由于baker_saxe_tenenbaum09的“动作”排在 的baker_tenenbaum_saxe06“贝叶斯”之前,因此根据指定的排序方案,该顺序似乎是正确的。

来自§14.68:3 个破折号表示重复的名字在线内容管理系统

对于同一作者、编辑、翻译或编纂者的连续条目 [...] 按作品标题进行字母排序(必须包含诸如 ed. 或 trans. 之类的缩写,但不影响条目的顺序)。

[例子]

Judt, Tony。《大幻觉?欧洲论文》。纽约:Hill and Wang,1996 年
。————。《重新评价:对被遗忘的二十世纪的反思》。纽约:企鹅出版社,2008 年。
。————,主编。《地中海欧洲的抵抗与革命,1939-1948 年》。纽约:劳特利奇,1989 年。

[...]

显然,示例是按标题排序而不是按年份排序。

还有§14.71:同一作者的作品按字母顺序排列

在参考书目中(与参考文献列表相反;参见 15.18),同一作者的标题通常按字母顺序列出。[...] 请注意,同一个人(或按相同顺序由同一个人)的所有作品 - 无论该人是编辑、作者、翻译者还是编译者 - 都会一起出现,无论添加了什么缩写。

请注意参考书目创建notes不同于参考文献列表使用样式创建authordate(其中引用采用作者-年份格式)。参考文献列表按作者、年份和标题的顺序排序(这是有道理的,因为带有参考文献列表的文档中的引用采用作者-年份格式)。

相关内容