citeproc-0.1: test/csl/disambiguate_ByCiteDisambiguateCondition.txt
>>===== MODE =====>>
citation
<<===== MODE =====<<
>>===== RESULT =====>>
Doe et al., <i>Book A</i> (2000); Doe et al., <i>Book B</i> (2000)
<<===== RESULT =====<<
>>===== 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-names="true"
et-al-min="2"
et-al-use-first="1"
givenname-disambiguation-rule="by-cite">
<layout delimiter="; ">
<group delimiter=", ">
<names variable="author">
<name and="symbol" delimiter=", " form="short" />
</names>
<choose>
<if disambiguate="true">
<text font-style="italic" variable="title" />
</if>
</choose>
</group>
<group prefix=" (" suffix=")">
<date variable="issued">
<date-part name="year" />
</date>
</group>
</layout>
</citation>
</style>
<<===== CSL =====<<
>>===== INPUT =====>>
[
{
"author": [
{
"family": "Doe",
"given": "John"
},
{
"family": "Roe",
"given": "Jane"
}
],
"id": "ITEM-1",
"issued": {
"date-parts": [
[
"2000"
]
]
},
"title": "Book A",
"type": "book"
},
{
"author": [
{
"family": "Doe",
"given": "John"
},
{
"family": "Roe",
"given": "Jane"
}
],
"id": "ITEM-2",
"issued": {
"date-parts": [
[
"2000"
]
]
},
"title": "Book B",
"type": "book"
}
]
<<===== INPUT =====<<
>>===== VERSION =====>>
1.0
<<===== VERSION =====<<