Put volume number with pages in bibliographic references for chapters in Chicago styles

This commit is contained in:
Elena Razlogova 2008-02-12 20:39:01 +00:00
parent fc3b23fdfd
commit 2b43b243dd
2 changed files with 14 additions and 4 deletions

View File

@ -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>

View File

@ -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>