Skip to content

Commit d16dffd

Browse files
authored
1 parent ca9e184 commit d16dffd

File tree

1 file changed

+161
-0
lines changed

1 file changed

+161
-0
lines changed

health-physics.csl

Lines changed: 161 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="never" default-locale="en-GB">
3+
<info>
4+
<title>Health Physics</title>
5+
<title-short>HPS</title-short>
6+
<id>http://www.zotero.org/styles/health-physics</id>
7+
<link href="http://www.zotero.org/styles/health-physics" rel="self"/>
8+
<link href="http://www.zotero.org/styles/mary-ann-liebert-harvard" rel="template"/>
9+
<link href="https://www.editorialmanager.com/hpj/default1.aspx" rel="documentation"/>
10+
<link href="https://hps.org/documents/HPS_publications_style_guide.pdf" rel="documentation"/>
11+
<author>
12+
<name>Patrick O'Brien</name>
13+
</author>
14+
<category citation-format="author-date"/>
15+
<category field="medicine"/>
16+
<issn>0017-9078</issn>
17+
<eissn>1538-5159</eissn>
18+
<updated>2022-04-27T09:02:03+00:00</updated>
19+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
20+
</info>
21+
<macro name="author">
22+
<names variable="author">
23+
<name name-as-sort-order="all" sort-separator=" " initialize-with="" delimiter=", "/>
24+
<label form="short" prefix=" (" suffix=")" strip-periods="true"/>
25+
<substitute>
26+
<names variable="editor"/>
27+
<names variable="translator"/>
28+
</substitute>
29+
</names>
30+
</macro>
31+
<macro name="author-short">
32+
<names variable="author">
33+
<name form="short" and="text" delimiter=", " initialize-with=""/>
34+
<substitute>
35+
<names variable="editor"/>
36+
<names variable="translator"/>
37+
</substitute>
38+
</names>
39+
</macro>
40+
<macro name="title">
41+
<text variable="title"/>
42+
</macro>
43+
<macro name="container">
44+
<choose>
45+
<if type="bill book chapter graphic legal_case legislation motion_picture report song" match="any">
46+
<group delimiter=" ">
47+
<choose>
48+
<if type="chapter paper-conference" match="any">
49+
<text term="in" text-case="capitalize-first" suffix=": "/>
50+
</if>
51+
</choose>
52+
<text macro="editors"/>
53+
<text variable="container-title" suffix=". "/>
54+
<text macro="edition"/>
55+
<group delimiter=":">
56+
<group delimiter="; ">
57+
<group delimiter=": ">
58+
<text variable="publisher-place"/>
59+
<text variable="publisher"/>
60+
</group>
61+
<choose>
62+
<if type="report" match="any">
63+
<group delimiter=" ">
64+
<text variable="genre"/>
65+
<label text-case="capitalize-first" variable="issue" form="short"/>
66+
<text variable="number"/>
67+
</group>
68+
</if>
69+
</choose>
70+
<date variable="issued">
71+
<date-part name="year"/>
72+
</date>
73+
</group>
74+
<choose>
75+
<if type="chapter paper-conference" match="any">
76+
<text variable="page"/>
77+
</if>
78+
</choose>
79+
</group>
80+
</group>
81+
</if>
82+
<else>
83+
<group delimiter="; ">
84+
<group delimiter=" ">
85+
<text variable="container-title" form="short" strip-periods="true"/>
86+
<group delimiter=":">
87+
<text variable="volume"/>
88+
<text variable="page"/>
89+
</group>
90+
</group>
91+
<date variable="issued">
92+
<date-part name="year"/>
93+
</date>
94+
</group>
95+
</else>
96+
</choose>
97+
</macro>
98+
<macro name="editors">
99+
<names variable="editor translator" delimiter=", " suffix=".">
100+
<name and="text" sort-separator=" " initialize-with="" name-as-sort-order="all" prefix=" "/>
101+
<label form="short" prefix=", "/>
102+
</names>
103+
</macro>
104+
<macro name="edition">
105+
<choose>
106+
<if is-numeric="edition">
107+
<group delimiter=" ">
108+
<number variable="edition" form="ordinal"/>
109+
<label variable="edition" form="short"/>
110+
</group>
111+
</if>
112+
<else>
113+
<text variable="edition"/>
114+
</else>
115+
</choose>
116+
</macro>
117+
<macro name="access">
118+
<choose>
119+
<if type="webpage post post-weblog" match="any">
120+
<group delimiter=". ">
121+
<group delimiter=" ">
122+
<text term="available at" text-case="capitalize-first"/>
123+
<text variable="URL"/>
124+
</group>
125+
<group delimiter=" ">
126+
<text term="accessed" text-case="capitalize-first"/>
127+
<date form="text" variable="accessed"/>
128+
</group>
129+
</group>
130+
</if>
131+
</choose>
132+
</macro>
133+
<citation disambiguate-add-year-suffix="true" cite-group-delimiter=", " collapse="year" et-al-min="3" et-al-use-first="1">
134+
<sort>
135+
<key variable="issued"/>
136+
<key macro="author"/>
137+
</sort>
138+
<layout prefix="(" suffix=")" delimiter="; ">
139+
<group delimiter=" ">
140+
<text macro="author-short"/>
141+
<date variable="issued">
142+
<date-part name="year"/>
143+
</date>
144+
</group>
145+
</layout>
146+
</citation>
147+
<bibliography line-spacing="2" hanging-indent="true">
148+
<sort>
149+
<key macro="author"/>
150+
<key variable="issued"/>
151+
</sort>
152+
<layout>
153+
<group delimiter=". " suffix=".">
154+
<text macro="author"/>
155+
<text macro="title"/>
156+
<text macro="container"/>
157+
<text macro="access"/>
158+
</group>
159+
</layout>
160+
</bibliography>
161+
</style>

0 commit comments

Comments
 (0)