Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update oxford-university-press-scimed-author-date.csl #7363

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 26 additions & 7 deletions oxford-university-press-scimed-author-date.csl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?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" default-locale="en-US" page-range-format="minimal">
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" page-range-format="minimal" default-locale="en-US">
<info>
<title>Oxford University Press SciMed (author-date)</title>
<id>http://www.zotero.org/styles/oxford-university-press-scimed-author-date</id>
Expand All @@ -12,9 +12,14 @@
<category citation-format="author-date"/>
<category field="medicine"/>
<category field="science"/>
<updated>2012-09-09T21:58:08+00:00</updated>
<updated>2024-12-18T21:40:51+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>
<locale xml:lang="en">
<terms>
<term name="accessed">date last accessed</term>
</terms>
</locale>
<macro name="editor">
<names variable="editor">
<name name-as-sort-order="all" sort-separator=" " initialize-with="" delimiter=", " delimiter-precedes-last="always"/>
Expand Down Expand Up @@ -46,7 +51,7 @@
</macro>
<macro name="title">
<choose>
<if type="bill book graphic legal_case motion_picture report song" match="any">
<if type="bill book graphic legal_case motion_picture report song webpage post post-weblog" match="any">
<text variable="title" font-style="italic" text-case="title"/>
</if>
<else>
Expand Down Expand Up @@ -76,6 +81,15 @@
</else>
</choose>
</macro>
<macro name="access">
<group delimiter=" ">
<text variable="URL"/>
<group delimiter=", " prefix="(" suffix=")">
<date form="text" variable="accessed"/>
<text term="accessed"/>
</group>
</group>
</macro>
<citation collapse="year" disambiguate-add-year-suffix="true" et-al-min="4" et-al-use-first="1">
<sort>
<key macro="year-date"/>
Expand Down Expand Up @@ -112,11 +126,13 @@
</if>
<else-if type="chapter paper-conference" match="any">
<group prefix=" " delimiter=". ">
<group delimiter=": ">
<text term="in" text-case="capitalize-first"/>
<text macro="editor"/>
<group delimiter=", ">
<group delimiter=": ">
<text term="in" text-case="capitalize-first"/>
<text macro="editor"/>
</group>
<text variable="container-title" font-style="italic" text-case="title"/>
</group>
<text variable="container-title" font-style="italic" text-case="title"/>
<text variable="volume" prefix="Vol "/>
<text macro="edition"/>
<group suffix="." delimiter=", ">
Expand Down Expand Up @@ -165,6 +181,9 @@
</else>
</choose>
</else-if>
<else-if type="webpage post post-weblog" match="any">
<text macro="access" prefix=". "/>
</else-if>
<else>
<text macro="editor" prefix=" " suffix="."/>
<group prefix=" " suffix=".">
Expand Down