commit 2b43b243dd67be82bc409f123e8a327d5492e57c
parent fc3b23fdfd3b4e97620f1f3341334a4867e8a5b5
Author: Elena Razlogova <elena.razlogova@gmail.com>
Date: Tue, 12 Feb 2008 20:39:01 +0000
Put volume number with pages in bibliographic references for chapters in Chicago styles
Diffstat:
2 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/csl/chicago-fullnote-bibliography.csl b/csl/chicago-fullnote-bibliography.csl
@@ -312,7 +312,7 @@
<text variable="volume" prefix=" "/>
<text variable="issue" prefix=", no. "/>
</if>
- <else-if type="book chapter" match="any">
+ <else-if type="book" match="any">
<group prefix=". " delimiter=". ">
<group>
<text term="volume" form="short" text-case="capitalize-first" suffix=". "/>
@@ -404,7 +404,12 @@
<macro name="pages-chapter">
<choose>
<if type="chapter">
- <text variable="page"/>
+ <choose>
+ <if variable="volume">
+ <text variable="volume" suffix=":"/>
+ </if>
+ </choose>
+ <text variable="page"/>
</if>
</choose>
</macro>
diff --git a/csl/chicago-note-bibliography.csl b/csl/chicago-note-bibliography.csl
@@ -209,7 +209,7 @@
<text variable="volume" prefix=" "/>
<text variable="issue" prefix=", no. "/>
</if>
- <else-if type="book chapter" match="any">
+ <else-if type="book">
<group prefix=". " delimiter=". ">
<group>
<text term="volume" form="short" text-case="capitalize-first" suffix=". "/>
@@ -278,7 +278,12 @@
<macro name="pages-chapter">
<choose>
<if type="chapter">
- <text variable="page"/>
+ <choose>
+ <if variable="volume">
+ <text variable="volume" suffix=":"/>
+ </if>
+ </choose>
+ <text variable="page"/>
</if>
</choose>
</macro>