Removes title capitalization in Chicago note styles

This commit is contained in:
Elena Razlogova 2008-01-23 15:21:50 +00:00
parent 658175ca17
commit 95229cbec4
4 changed files with 16 additions and 16 deletions

View file

@ -126,20 +126,20 @@
<macro name="title">
<choose>
<if type="book">
<text variable="title" font-style="italic" text-case="title"/>
<text variable="title" font-style="italic"/>
</if>
<else>
<text variable="title" quotes="true" text-case="title"/>
<text variable="title" quotes="true"/>
</else>
</choose>
</macro>
<macro name="title-short">
<choose>
<if type="book">
<text variable="title" form="short" font-style="italic" text-case="title"/>
<text variable="title" form="short" font-style="italic"/>
</if>
<else>
<text variable="title" form="short" quotes="true" text-case="title"/>
<text variable="title" form="short" quotes="true"/>
</else>
</choose>
</macro>

View file

@ -105,20 +105,20 @@
<macro name="title">
<choose>
<if type="book">
<text variable="title" font-style="italic" text-case="title"/>
<text variable="title" font-style="italic"/>
</if>
<else>
<text variable="title" quotes="true" text-case="title"/>
<text variable="title" quotes="true"/>
</else>
</choose>
</macro>
<macro name="title-short">
<choose>
<if type="book">
<text variable="title" form="short" font-style="italic" text-case="title"/>
<text variable="title" form="short" font-style="italic"/>
</if>
<else>
<text variable="title" form="short" quotes="true" text-case="title"/>
<text variable="title" form="short" quotes="true"/>
</else>
</choose>
</macro>

View file

@ -83,10 +83,10 @@
<text variable="genre"/>
</if>
<else-if type="book">
<text variable="title" font-style="italic" text-case="title"/>
<text variable="title" font-style="italic"/>
</else-if>
<else>
<text variable="title" quotes="true" text-case="title"/>
<text variable="title" quotes="true"/>
</else>
</choose>
</macro>
@ -106,10 +106,10 @@
</choose>
</if>
<else-if type="book">
<text variable="title" form="short" font-style="italic" text-case="title"/>
<text variable="title" form="short" font-style="italic"/>
</else-if>
<else>
<text variable="title" form="short" quotes="true" text-case="title"/>
<text variable="title" form="short" quotes="true"/>
</else>
</choose>
</macro>

View file

@ -83,10 +83,10 @@
<text variable="genre"/>
</if>
<else-if type="book">
<text variable="title" font-style="italic" text-case="title"/>
<text variable="title" font-style="italic"/>
</else-if>
<else>
<text variable="title" quotes="true" text-case="title"/>
<text variable="title" quotes="true"/>
</else>
</choose>
</macro>
@ -106,10 +106,10 @@
</choose>
</if>
<else-if type="book">
<text variable="title" form="short" font-style="italic" text-case="title"/>
<text variable="title" form="short" font-style="italic"/>
</else-if>
<else>
<text variable="title" form="short" quotes="true" text-case="title"/>
<text variable="title" form="short" quotes="true"/>
</else>
</choose>
</macro>