Prise en compte de la déprécation de title-short

This commit is contained in:
Bastien Dumont 2022-01-23 22:43:28 +01:00
parent 867d6171e0
commit d6fd6e6a6b

View File

@ -720,20 +720,20 @@
<if variable="title-short"> <if variable="title-short">
<choose> <choose>
<if variable="annote" type="book thesis" match="any"> <if variable="annote" type="book thesis" match="any">
<text variable="title-short" font-style="italic"/> <text variable="title" form="short" font-style="italic"/>
</if> </if>
<else-if type="paper-conference"> <else-if type="paper-conference">
<choose> <choose>
<if variable="title"> <if variable="title">
<text variable="title-short"/> <text variable="title" form="short"/>
</if> </if>
<else> <else>
<text variable="title-short" font-style="italic"/> <text variable="title" form="short" font-style="italic"/>
</else> </else>
</choose> </choose>
</else-if> </else-if>
<else> <else>
<text variable="title-short"/> <text variable="title" form="short"/>
</else> </else>
</choose> </choose>
</if> </if>