In Chicago note styles, do not display url if pages are provided and hide repository for published sources

This commit is contained in:
Elena Razlogova 2007-11-29 10:26:21 +00:00
parent 0d1c895d7a
commit 7c4e03c158
2 changed files with 20 additions and 2 deletions

View file

@ -283,9 +283,19 @@
</group>
</else>
</choose>
<choose>
<if type="book thesis chapter article-journal article-newspaper article-magazine" match="none">
<group delimiter=". ">
<text variable="archive_location" text-case="title"/>
<text macro="archive"/>
<text macro="access"/>
</group>
</if>
</choose>
<choose>
<if variable="page" match="none">
<text variable="URL"/>
</if>
</choose>
</group>
</layout>
</bibliography>

View file

@ -294,11 +294,19 @@
<text variable="locator" prefix=", "/>
</else>
</choose>
<choose>
<if type="book thesis chapter article-journal article-newspaper article-magazine" match="none">
<group prefix=", " delimiter=", ">
<text variable="archive_location"/>
<text macro="archive"/>
<text macro="access"/>
</group>
</if>
</choose>
<choose>
<if variable="page" match="none">
<text variable="URL" prefix=", "/>
</if>
</choose>
</else>
</choose>
</layout>