Skip to content

Instantly share code, notes, and snippets.

@adam3smith
Created June 26, 2011 21:03
Show Gist options
  • Save adam3smith/1047974 to your computer and use it in GitHub Desktop.
Save adam3smith/1047974 to your computer and use it in GitHub Desktop.
Actual output Bibliography:
Bauthor, O. T. Cauthor, T. Dauthor, T. Eauthor, E. Fauthor, F.; Gauthor, G.
Expected output Bibliography:
Bauthor, O. T.; Cauthor, T.; Dauthor, T.; Eauthor, E.; Fauthor, F.; Gauthor, G.
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:z="http://www.zotero.org/namespaces/export#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:vcard="http://nwalsh.com/rdf/vCard#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:bib="http://purl.org/net/biblio#"
xmlns:prism="http://prismstandard.org/namespaces/1.2/basic/"
xmlns:dcterms="http://purl.org/dc/terms/">
<bib:Report rdf:about="www.reporturl.com">
<z:itemType>report</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Reportplace</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Institution</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Bauthor</foaf:surname>
<foaf:givenname>One Two</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Cauthor</foaf:surname>
<foaf:givenname>Two</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Dauthor</foaf:surname>
<foaf:givenname>Three</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Eauthor</foaf:surname>
<foaf:givenname>Edward</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Fauthor</foaf:surname>
<foaf:givenname>Fritz</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Gauthor</foaf:surname>
<foaf:givenname>Gerd</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Report on something many authors</dc:title>
<prism:number>17</prism:number>
<z:type>Report Type</z:type>
<dc:date>2009-12-12</dc:date>
<dc:identifier>
<dcterms:URI><rdf:value>www.reporturl.com</rdf:value></dcterms:URI>
</dc:identifier>
<dcterms:dateSubmitted>2007-12-12 06:00:00</dcterms:dateSubmitted>
<dc:coverage>loc archieve</dc:coverage>
</bib:Report>
</rdf:RDF>
<?xml version="1.0" encoding="utf-8"?>
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only">
<info>
<title>Semicolon Test</title>
<id>http://www.zotero.org/styles/semicolon</id>
<link href="http://www.zotero.org/styles/semicolon" rel="self"/>
<author>
<name>Simon Kornblith</name>
<email>simon@simonster.com</email>
</author>
<category citation-format="author-date"/>
<updated>2011-05-12T00:16:05+00:00</updated>
<rights>This work is licensed under a Creative Commons Attribution-Share Alike 3.0 License: http://creativecommons.org/licenses/by-sa/3.0/</rights>
</info>
<macro name="author">
<names variable="author">
<name name-as-sort-order="all" sort-separator=", " initialize-with=". " delimiter="; " delimiter-precedes-last="always"/>
</names>
</macro>
<macro name="author-short">
<names variable="author">
<name form="short" and="symbol" delimiter=", " initialize-with=". "/>
</names>
</macro>
<citation>
<sort>
<key macro="author"/>
</sort>
<layout prefix="(" suffix=")" delimiter=", ">
<group delimiter=", ">
<text macro="author-short"/>
</group>
</layout>
</citation>
<bibliography hanging-indent="true" et-al-min="8" et-al-use-first="7" entry-spacing="0" line-spacing="2">
<sort>
<key macro="author"/>
</sort>
<layout>
<text macro="author" suffix="."/>
</layout>
</bibliography>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment