citeproc-0.1: test/csl/disambiguate_YearSuffixMacroSameYearExplicit.txt
>>==== MODE ====>>
citation
<<==== MODE ====<<
>>==== RESULT ====>>
A Smith 2001
B Smith 2001
<<==== RESULT ====<<
>>==== CITATION-ITEMS ====>>
[
[
{
"id": "ITEM-1"
}
],
[
{
"id": "ITEM-2"
}
]
]
<<==== CITATION-ITEMS ====<<
>>==== CSL ====>>
<style
xmlns="http://purl.org/net/xbiblio/csl"
class="note"
version="1.0">
<info>
<id />
<title />
<updated>2009-08-10T04:49:00+09:00</updated>
</info>
<citation disambiguate-add-givenname="true" disambiguate-add-year-suffix="true">
<layout>
<group delimiter=" ">
<names variable="author">
<name form="short" />
</names>
<group delimiter="">
<date variable="issued">
<date-part name="year"/>
</date>
<text variable="year-suffix"/>
</group>
</group>
</layout>
</citation>
</style>
<<==== CSL ====<<
>>==== INPUT ====>>
[
{
"author": [
{
"family": "Smith",
"given": "A"
}
],
"id": "ITEM-1",
"issued": {
"date-parts": [
[
2001
]
]
},
"type": "book"
},
{
"author": [
{
"family": "Smith",
"given": "B"
}
],
"id": "ITEM-2",
"issued": {
"date-parts": [
[
2001
]
]
},
"type": "book"
}
]
<<==== INPUT ====<<
>>===== VERSION =====>>
1.0
<<===== VERSION =====<<