Advertisement
Guest User

cit

a guest
Jun 22nd, 2023
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.92 KB | Source Code | 0 0
  1. <citation>
  2.     <layout delimiter="; " suffix=".">
  3.       <group delimiter=", ">
  4.         <group>
  5.           <choose>
  6.  
  7.         <if position="ibid-with-locator">
  8.           <group delimiter=" ">
  9.             <text term="ibid" strip-periods="true"/>
  10.             <text variable="locator" form="short" strip-periods="true"/>
  11.           </group>
  12.         </if>
  13.         <else-if position="ibid">
  14.           <group delimiter=" ">
  15.           <text term="ibid" strip-periods="true"/>
  16.           </group>
  17.         </else-if>
  18.         <else-if>
  19.  
  20.             <if type="article-journal" match="all">        
  21.               <text macro="author-article-journal"/>
  22.               <text value=", " />
  23.               <text variable="title"/>
  24.               <text variable="container-title" form="short" prefix=", " suffix=" "/>
  25.               <choose>
  26.                 <if match="all" variable="issued">
  27.                   <date date-parts="year" form="text" variable="issued"/>
  28.                 </if>
  29.               </choose>
  30.             </if>
  31.                        
  32.             <else-if type="book" match="all">
  33.               <text macro="author-book"/>
  34.               <text value=", " />
  35.               <text variable="title"/>
  36.               <date date-parts="year" form="text" variable="issued" prefix=" (" suffix=")"/>
  37.               <choose>
  38.                 <if match="all" variable="edition">
  39.                 </if>
  40.               </choose>
  41.             </else-if>
  42.  
  43. <!--    .....     -->
  44.  
  45.           </else-if></choose>
  46.         </group>
  47.         <group delimiter=" ">
  48.       <choose>
  49.         <if locator="page" match="none">
  50.           <label variable="locator" form="short" strip-periods="true"/>
  51.         </if>
  52.       </choose>
  53.           <if position="ibid">
  54.           </if>
  55.           <else-if>
  56.           <text variable="locator" form="short" strip-periods="true"/>
  57.           </else-if>
  58.         </group>
  59.       </group>
  60.     </layout>
  61.   </citation>
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement