Skip to content

Commit

Permalink
Allow locator labels on non-page pinpoints in Chicago family.
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Jan 31, 2012
1 parent 7132887 commit a493d9d
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 3 deletions.
12 changes: 11 additions & 1 deletion chicago-fullnote-bibliography-delimiter-fixes.csl
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,9 @@
</else>
</choose>
</if>
<else>
<label variable="locator" form="short" suffix=" "/>
</else>
</choose>
<text variable="locator"/>
</group>
Expand Down Expand Up @@ -645,7 +648,14 @@
</choose>
</if>
<else-if type="article-journal">
<text variable="locator"/>
<group delimiter=" ">
<choose>
<if locator="page" match="none">
<label variable="locator" form="short" suffix=" "/>
</if>
</choose>
<text variable="locator"/>
</group>
</else-if>
<else-if type="legal_case"/>
<else>
Expand Down
12 changes: 11 additions & 1 deletion chicago-fullnote-bibliography-no-ibid-delimiter-fixes.csl
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,9 @@
</else>
</choose>
</if>
<else>
<label variable="locator" form="short" suffix=" "/>
</else>
</choose>
<text variable="locator"/>
</group>
Expand Down Expand Up @@ -637,7 +640,14 @@
<if variable="locator" match="none">
<choose>
<if type="article-journal">
<text variable="page"/>
<group delimiter=" ">
<choose>
<if locator="page" match="none">
<label variable="locator" form="short" suffix=" "/>
</if>
</choose>
<text variable="locator"/>
</group>
</if>
<else-if type="chapter paper-conference" match="any">
<text variable="page"/>
Expand Down
12 changes: 11 additions & 1 deletion chicago-fullnote-bibliography.csl
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,9 @@
</else>
</choose>
</if>
<else>
<label variable="locator" form="short" suffix=" "/>
</else>
</choose>
</if>
<else-if type="bill book graphic legal_case motion_picture report song" match="any">
Expand All @@ -546,7 +549,14 @@
<text macro="pages"/>
</if>
<else-if type="article-journal">
<text variable="locator" prefix=": "/>
<group delimiter=" " prefix=": ">
<choose>
<if locator="page" match="none">
<label variable="locator" form="short" suffix=" "/>
</if>
</choose>
<text variable="locator"/>
</group>
</else-if>
<else-if type="legal_case"/>
<else>
Expand Down
3 changes: 3 additions & 0 deletions chicago-note-bibliography.csl
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,9 @@
</else>
</choose>
</if>
<else>
<label variable="locator" form="short" suffix=" "/>
</else>
</choose>
</if>
<else-if type="bill book graphic legal_case motion_picture report song" match="any">
Expand Down

0 comments on commit a493d9d

Please sign in to comment.