citeproc-0.1: test/csl/name_Delimiter.txt
>>===== MODE =====>>
citation
<<===== MODE =====<<
>>===== RESULT =====>>
John Doe; Jane Roe OR Doe Inc.; Doe Inc.; Noakes Inc.
<<===== 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>
<layout delimiter=" OR ">
<names variable="author">
<name delimiter="; ">
<name-part name="family" />
</name>
</names>
</layout>
</citation>
</style>
<<===== CSL =====<<
>>===== INPUT =====>>
[
{
"author": [
{
"family": "Doe",
"given": "John"
},
{
"family": "Roe",
"given": "Jane"
}
],
"id": "item-1",
"type": "book"
},
{
"author": [
{
"family": "Doe Inc.",
"given": "",
"isInstitution": true
},
{
"family": "Doe Inc.",
"given": "",
"isInstitution": true
},
{
"family": "Noakes Inc.",
"given": "",
"isInstitution": true
}
],
"id": "item-2",
"type": "book"
}
]
<<===== INPUT =====<<
>>===== VERSION =====>>
1.0
<<===== VERSION =====<<