Skip to content

Instantly share code, notes, and snippets.

@fbennett
Created June 30, 2014 10:32
Show Gist options
  • Save fbennett/c97459fb86ad9e92a87b to your computer and use it in GitHub Desktop.
Save fbennett/c97459fb86ad9e92a87b to your computer and use it in GitHub Desktop.
CSL style Plain Text List (1)
<?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" page-range-format="expanded" default-locale="en-US" et-al-min="99" et-al-use-first="1">
<info>
<title>Plain List (1)</title>
<title-short>Plain List (1)</title-short>
<id>http://www.zotero.org/styles/plain-list-1</id>
<link href="http://www.zotero.org/styles/plain-list-1" rel="self"/>
<link href="https://forums.zotero.org/discussion/33653/print-or-export-sorted-list-of-titles/#Item_5" rel="documentation"/>
<category citation-format="in-text"/>
<summary>Simple list of resource authors and titles</summary>
<updated>2013-12-10T12:00:00+00:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<citation collapse="citation-number">
<sort>
<key variable="call-number"/>
<key variable="author"/>
<key variable="title"/>
</sort>
<layout>
<group delimiter="&#x0A; " suffix="&#x0A;">
<choose>
<if variable="author">
<names variable="author"/>
</if>
<else>
<text value="NO AUTHORS"/>
</else>
</choose>
<choose>
<if variable="title">
<text variable="title"/>
</if>
<else>
<text value="NO TITLE"/>
</else>
</choose>
</group>
</layout>
</citation>
<bibliography>
<sort>
<key variable="call-number"/>
<key variable="author"/>
<key variable="title"/>
</sort>
<layout>
<group delimiter="&#x0A; " suffix="&#x0A;">
<choose>
<if variable="author">
<names variable="author"/>
</if>
<else>
<text value="NO AUTHORS"/>
</else>
</choose>
<choose>
<if variable="title">
<text variable="title"/>
</if>
<else>
<text value="NO TITLE"/>
</else>
</choose>
</group>
</layout>
</bibliography>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment