Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
880de43f4b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
126 lines (122 sloc) 3.95 KB
<?xml version="1.0" encoding="utf-8"?>
<?xml-model href="../thirdparty/schema/csl.rnc" type="application/relax-ng-compact-syntax"?>
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" default-locale="en-GB" class="in-text">
<info>
<!-- The required cs:info element fulfills the same function in
independent styles as it does in dependent styles: it
stores the style metadata. -->
<title>Edition Open Access</title>
<id>http://www.zotero.org/styles/edition-open-access</id>
<author>
<name>Klaus Thoden</name>
<email>kthoden@mpiwg-berlin.mpg.de</email>
</author>
<rights
license="http://creativecommons.org/licenses/by-sa/3.0/">This
work is licensed under a Creative Commons Attribution-ShareAlike
3.0 License</rights>
<link rel="documentation" href="http://edition-open-access.de/support/editorial.html">http://www.edition-open-access.de/support/editorial.html</link>
<category citation-format="author-date"/>
<summary>Style file for Editon Open Access publications.</summary>
<updated>2017-05-04T13:21:00+02:00</updated>
</info>
<locale xml:lang="en">
<!-- The optional cs:locale elements can be used to overwrite the
locale data from the locale files. -->
<terms>
<term name="no date">without date</term>
</terms>
</locale>
<locale xml:lang="de">
<!-- The optional cs:locale elements can be used to overwrite the
locale data from the locale files. -->
<terms>
<term name="no date">ohne Datum</term>
</terms>
</locale>
<!-- The optional cs:macro elements can be used to store CSL code
for use by cs:citation, cs:bibliography, or other cs:macro
elements. -->
<macro name="author">
<names variable="author">
<name and="text" initialize="false" name-as-sort-order="first"/>
</names>
</macro>
<macro name="editor">
<choose>
<if variable="editor">
<text form="verb" term="editor" text-case="capitalize-first" suffix=" "/>
<names variable="editor">
<name and="text" initialize="false" form="long" />
</names>
</if>
</choose>
</macro>
<macro name="issued-year">
<choose>
<if variable="issued">
<date variable="issued">
<date-part name="year"/>
</date>
</if>
<else>
<text term="no date"/>
</else>
</choose>
</macro>
<macro name="title">
<choose>
<if type="article-newspaper book report thesis pamphlet" match="any">
<text variable="title" font-style="italic"/>
</if>
<else>
<text variable="title"/>
</else>
</choose>
</macro>
<macro name="container-title">
<text variable="container-title" font-style="italic" prefix="In: "/>
</macro>
<!-- The required cs:citation element defines the format of
citations. -->
<citation et-al-min="3" et-al-use-first="1">
<sort>
<key macro="author"/>
</sort>
<layout prefix="" suffix="" delimiter=",">
<group delimiter=",">
<text macro="author"/>
<text macro="issued-year"/>
</group>
</layout>
</citation>
<bibliography>
<!-- The optional cs:bibliography element defines the format of the
bibliography. -->
<sort>
<key macro="author"/>
<key macro="issued-year"/>
<key variable="title"/>
</sort>
<layout suffix=".">
<group delimiter=" " suffix=". ">
<text macro="author"/>
<text macro="issued-year" prefix="(" suffix=")"/>
</group>
<group delimiter=". " suffix=". ">
<text macro="title" />
<text macro="container-title"/>
<text macro="editor"/>
</group>
<group>
<text variable="volume"/>
<text variable="issue" prefix="(" suffix=")"/>
</group>
<group delimiter=": " suffix=", ">
<text variable="publisher-place"/>
<text variable="publisher"/>
</group>
<text variable="page"/>
</layout>
</bibliography>
</style>