>>== MODE ==>>
citation
<<== MODE ==<<

>>===== CITATIONS =====>>
[
    [
        {
            "citationID": "CITATION-1", 
            "citationItems": [
                {
                    "id": "ITEM-1"
                }, 
                {
                    "id": "ITEM-2"
                }, 
                {
                    "id": "ITEM-3"
                }
            ], 
            "properties": {
                "index": 0, 
                "noteIndex": 1
            }
        }, 
        [], 
        []
    ]
]
<<===== CITATIONS =====<<


>>== RESULT ==>>
>>[0] (John Smith 1999; John Smith 2000; Bob Jones 2011)
<<== RESULT ==<<

>>===== CSL =====>>
<style 
      xmlns="http://purl.org/net/xbiblio/csl"
      class="in-text"
      version="1.0">
  <info>
    <id />
    <title />
    <updated>2009-08-10T04:49:00+09:00</updated>
  </info>
  <citation>
    <layout delimiter="; " prefix="(" suffix=")">
      <group delimiter=" ">
        <names variable="author">
          <name/>
        </names>
        <date variable="issued" form="text"/>
      </group>
    </layout>
  </citation>
</style>
<<===== CSL =====<<


>>===== INPUT =====>>
[
    {
        "id": "ITEM-1", 
		"author":[
			{
				"family":"Smith",
				"given":"John"
			}
		],
		"issued":{
			"date-parts":[
				[1999]
			]
		},
        "type": "article-journal"
    },
    {
        "id": "ITEM-2", 
		"author":[
			{
				"family":"Smith",
				"given":"John"
			}
		],
		"issued":{
			"date-parts":[
				[2000]
			]
		},
        "type": "article-journal"
    },
    {
        "id": "ITEM-3", 
		"author":[
			{
				"family":"Jones",
				"given":"Bob"
			}
		],
		"issued":{
			"date-parts":[
				[2011]
			]
		},
        "type": "article-journal"
    }
]
<<===== INPUT =====<<
