Skip to content

Commit 3ea7d02

Browse files
authored
Only "page" locators are ommited in book citations in JuS journal. (#5532)
Most notably, many judicial books are cited by § plus margin number. The previous version would eat the § locator, which it should not.
1 parent 1851a54 commit 3ea7d02

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

juristische-schulung.csl

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,16 @@
144144
<text macro="edition"/>
145145
</else>
146146
</choose>
147-
<text variable="locator" prefix=", "/>
147+
<choose>
148+
<!-- "S." as a locator is ommited. Many books however are instead cited by § plus margin number. The § has to appear. -->
149+
<if locator="page">
150+
<text variable="locator" prefix=", "/>
151+
</if>
152+
<else>
153+
<label variable="locator" form="symbol" prefix=", "/>
154+
<text variable="locator" prefix=" "/>
155+
</else>
156+
</choose>
148157
</else-if>
149158
<!-- Legal commentary or handbook should be of publication type "entry-encyclopedia"
150159
- The term "Bearbeiter" (author of a certain chapter) in the following examples should be added by you and is not governed by this stylesheet

0 commit comments

Comments
 (0)