forked from citation-style-language/styles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ACS Nano - from gcorthey (slight variant of ACS)
- Loading branch information
1 parent
5a8ad09
commit 5784da2
Showing
1 changed file
with
191 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" default-locale="en-US"> | ||
<info> | ||
<title>ACS Nano</title> | ||
<id>http://www.zotero.org/styles/acs-nano</id> | ||
<link href="http://www.zotero.org/styles/acs-nano" rel="self"/> | ||
<link href="http://www.zotero.org/styles/american-chemical-society-with-titles" rel="template"/> | ||
<author> | ||
<name>Gaston Corthey</name> | ||
<email>gcorthey@gmail.com</email> | ||
</author> | ||
<category citation-format="numeric"/> | ||
<category field="chemistry"/> | ||
<issn>1936-0851</issn> | ||
<issn>1936-086X</issn> | ||
<updated>2012-01-23T19:50:03+00:00</updated> | ||
<summary>The ACS Nano style, adapted from The American Chemical Society style with article titles</summary> | ||
<link href="http://pubs.acs.org/paragonplus/submission/ancac3/ancac3_authguide.pdf" rel="documentation"/> | ||
<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="editor"> | ||
<names variable="editor"> | ||
<name sort-separator=", " initialize-with=". " name-as-sort-order="all" delimiter="; " delimiter-precedes-last="always"/> | ||
<label form="short" prefix=", " text-case="capitalize-first" suffix="." strip-periods="true"/> | ||
</names> | ||
</macro> | ||
<macro name="author"> | ||
<names variable="author"> | ||
<name sort-separator=", " initialize-with=". " name-as-sort-order="all" delimiter="; " delimiter-precedes-last="always"/> | ||
<label form="short" prefix=", " suffix="." text-case="capitalize-first" strip-periods="true"/> | ||
<et-al font-style="italic"/> | ||
</names> | ||
</macro> | ||
<macro name="access"> | ||
<text variable="URL"/> | ||
</macro> | ||
<macro name="publisher"> | ||
<group delimiter=": "> | ||
<text variable="publisher"/> | ||
<text variable="publisher-place"/> | ||
</group> | ||
</macro> | ||
<macro name="volume"> | ||
<group delimiter=" "> | ||
<text term="volume" form="short" suffix="." text-case="capitalize-first" strip-periods="true"/> | ||
<text variable="volume"/> | ||
</group> | ||
</macro> | ||
<macro name="series"> | ||
<text variable="collection-title"/> | ||
</macro> | ||
<macro name="pages"> | ||
<label variable="page" form="short" suffix=". " strip-periods="true"/> | ||
<text variable="page"/> | ||
</macro> | ||
<macro name="book-container"> | ||
<group delimiter=" "> | ||
<text variable="title" suffix="."/> | ||
<text term="in" text-case="capitalize-first"/> | ||
<text variable="container-title" font-style="italic"/> | ||
</group> | ||
</macro> | ||
<macro name="issued"> | ||
<date variable="issued" delimiter=" "> | ||
<date-part name="year"/> | ||
</date> | ||
</macro> | ||
<macro name="full-issued"> | ||
<date variable="issued" delimiter=" "> | ||
<date-part name="month" form="long" suffix=" "/> | ||
<date-part name="day" suffix=", "/> | ||
<date-part name="year"/> | ||
</date> | ||
</macro> | ||
<macro name="edition"> | ||
<choose> | ||
<if is-numeric="edition"> | ||
<group delimiter=" "> | ||
<number variable="edition" form="ordinal"/> | ||
<text term="edition" form="short" suffix="." strip-periods="true"/> | ||
</group> | ||
</if> | ||
<else> | ||
<text variable="edition" suffix="."/> | ||
</else> | ||
</choose> | ||
</macro> | ||
<citation collapse="citation-number"> | ||
<sort> | ||
<key variable="citation-number"/> | ||
</sort> | ||
<layout delimiter="," vertical-align="sup"> | ||
<text variable="citation-number"/> | ||
</layout> | ||
</citation> | ||
<bibliography et-al-min="11" et-al-use-first="10" second-field-align="flush" entry-spacing="0"> | ||
<layout suffix="."> | ||
<text variable="citation-number" suffix="."/> | ||
<text macro="author" suffix=" "/> | ||
<choose> | ||
<if type="article-magazine"> | ||
<group delimiter=" "> | ||
<text variable="container-title" font-style="italic" suffix="."/> | ||
<text macro="edition"/> | ||
<text macro="publisher"/> | ||
<text macro="full-issued" suffix=","/> | ||
<text macro="pages"/> | ||
</group> | ||
</if> | ||
<else-if type="thesis"> | ||
<group delimiter=", "> | ||
<group delimiter=". "> | ||
<text variable="title" text-case="title"/> | ||
<text variable="genre"/> | ||
</group> | ||
<text macro="publisher"/> | ||
<text macro="issued"/> | ||
<text macro="volume"/> | ||
<text macro="pages"/> | ||
</group> | ||
</else-if> | ||
<else-if type="bill book graphic legal_case motion_picture report song" match="any"> | ||
<group delimiter="; "> | ||
<text variable="title" text-case="title" font-style="italic"/> | ||
<text macro="editor" prefix=" "/> | ||
<text macro="series"/> | ||
<text macro="edition"/> | ||
<group delimiter=", "> | ||
<text macro="publisher"/> | ||
<text macro="issued"/> | ||
</group> | ||
<group delimiter=", "> | ||
<text macro="volume"/> | ||
<text macro="pages"/> | ||
</group> | ||
</group> | ||
</else-if> | ||
<else-if type="chapter paper-conference" match="any"> | ||
<group delimiter="; "> | ||
<text macro="book-container"/> | ||
<text macro="editor"/> | ||
<text macro="series"/> | ||
<group delimiter=", "> | ||
<text macro="publisher"/> | ||
<text macro="issued"/> | ||
</group> | ||
<group delimiter=", "> | ||
<text macro="volume"/> | ||
<text macro="pages"/> | ||
</group> | ||
</group> | ||
</else-if> | ||
<else-if type="webpage"> | ||
<group delimiter=" "> | ||
<text variable="title" text-case="title"/> | ||
<text variable="URL"/> | ||
<date variable="accessed" prefix="(accessed " suffix=")" delimiter=" "> | ||
<date-part name="month" form="short" strip-periods="true"/> | ||
<date-part name="day" suffix=", "/> | ||
<date-part name="year"/> | ||
</date> | ||
</group> | ||
</else-if> | ||
<else-if type="article-journal"> | ||
<group delimiter=" "> | ||
<text variable="title" suffix="." text-case="title" /> | ||
<text variable="container-title" font-style="italic" form="short"/> | ||
<group delimiter=", "> | ||
<text macro="issued" font-weight="bold"/> | ||
<text variable="volume" font-style="italic"/> | ||
<text variable="page"/> | ||
</group> | ||
</group> | ||
</else-if> | ||
<else> | ||
<group delimiter=" "> | ||
<group delimiter=". "> | ||
<text variable="title" text-case="title"/> | ||
<text variable="container-title" font-style="italic" form="short"/> | ||
</group> | ||
<group delimiter=", "> | ||
<text macro="issued" font-weight="bold"/> | ||
<text variable="volume" font-style="italic"/> | ||
<text variable="page"/> | ||
</group> | ||
</group> | ||
</else> | ||
</choose> | ||
</layout> | ||
</bibliography> | ||
</style> |