Hi,
in the test below we have 4 references: 2 with the same names, the
other 2 differing in a family and in a given name with the first
reference respectively.
Disambiguation for each couple of citations would be:
Smith, Brown & Jones (1980); Smith, Brown & Jones (1980)
Smith, Brown, et al. (1980); Smith, Benson, et al. (1980)
Smith, Brown & J. Jones (1980); Smith, Brown & A. Jones (1980)
But, what happens if we put the 3 cites in the same document?
citeproc-js, and citeproc-hs do the following:
Smith, Brown & J. Jones (1980); Smith, Brown & J. Jones (1980)
Smith, Brown & J. Jones (1980); Smith, Benson, et al. (1980)
Smith, Brown & J. Jones (1980); Smith, Brown & A. Jones (1980)
is that correct? I have the feeling that the first one should be:
Smith, Brown & J. Jones (1980); Smith, Brown & Jones (1980)
(that would be a bit troublesome here, but it could be done)
Andrea
===== MODE =====>>
citation
<<===== MODE =====<<
===== RESULT =====>>
Smith, Brown & J. Jones (1980); Smith, Brown & J. Jones (1980)
Smith, Brown & J. Jones (1980); Smith, Benson, et al. (1980)
Smith, Brown & J. Jones (1980); Smith, Brown & A. Jones (1980)
<<===== RESULT =====<<
===== CITATION-ITEMS =====>>
[
[
{
“id”: “ITEM-1”,
“label”: “page”,
“locator”: “100”
},
{
“id”: “ITEM-2”,
“label”: “chapter”,
“locator”: “200”
}
],
[
{
“id”: “ITEM-1”,
“label”: “page”,
“locator”: “100”
},
{
“id”: “ITEM-3”,
“label”: “chapter”,
“locator”: “200”
}
],
[
{
“id”: “ITEM-1”,
“label”: “page”,
“locator”: “100”
},
{
“id”: “ITEM-4”,
“label”: “chapter”,
“locator”: “200”
}
]
]
<<===== CITATION-ITEMS =====<<
2009-08-10T04:49:00+09:00===== CSL =====>>
<<===== CSL =====<<
===== INPUT =====>>
[
{
“author”: [
{
“family”: “Smith”,
“given”: “John”,
“static-ordering”: false
},
{
“family”: “Brown”,
“given”: “John”,
“static-ordering”: false
},
{
“family”: “Jones”,
“given”: “John”,
“static-ordering”: false
}
],
“id”: “ITEM-1”,
“issued”: {
“date-parts”: [
[
1980
]
]
},
“type”: “book”
},
{
“author”: [
{
“family”: “Smith”,
“given”: “John”,
“static-ordering”: false
},
{
“family”: “Brown”,
“given”: “John”,
“static-ordering”: false
},
{
“family”: “Jones”,
“given”: “John”,
“static-ordering”: false
}
],
“id”: “ITEM-2”,
“issued”: {
“date-parts”: [
[
1980
]
]
},
“type”: “book”
},
{
“author”: [
{
“family”: “Smith”,
“given”: “John”,
“static-ordering”: false
},
{
“family”: “Benson”,
“given”: “John”,
“static-ordering”: false
},
{
“family”: “Jones”,
“given”: “John”,
“static-ordering”: false
}
],
“id”: “ITEM-3”,
“issued”: {
“date-parts”: [
[
1980
]
]
},
“type”: “book”
},
{
“author”: [
{
“family”: “Smith”,
“given”: “John”,
“static-ordering”: false
},
{
“family”: “Brown”,
“given”: “John”,
“static-ordering”: false
},
{
“family”: “Jones”,
“given”: “Arthur”,
“static-ordering”: false
}
],
“id”: “ITEM-4”,
“issued”: {
“date-parts”: [
[
1980
]
]
},
“type”: “book”
}
]
<<===== INPUT =====<<