Skip to content

Commit

Permalink
add medium to IEEE (#5846)
Browse files Browse the repository at this point in the history
add medium to IEEE 

See 
https://forums.zotero.org/discussion/93801/how-to-cite-lectures-in-the-ieee-citation-style-using-zotero#latest
(not doing type/genre because it interferes with online presentations)
  • Loading branch information
adam3smith authored Jan 16, 2022
1 parent 5563ccc commit 1455165
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions ieee.csl
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,7 @@
<text variable="URL"/>
<group delimiter=" " prefix="(" suffix=").">
<text term="accessed"/>
<date variable="accessed">
<date-part name="month" form="short"/>
<date-part name="day" form="numeric-leading-zeros" prefix=" " suffix=", "/>
<date-part name="year" form="long"/>
</date>
<date variable="accessed" form="text"/>
</group>
</group>
</if>
Expand All @@ -234,11 +230,18 @@
</group>
<!-- [Online Video]. -->
<group prefix="[" suffix="]" delimiter=" ">
<text term="online" text-case="capitalize-first"/>
<choose>
<if type="motion_picture">
<text value="video" text-case="capitalize-first"/>
<if variable="medium" match="any">
<text variable="medium" text-case="capitalize-first"/>
</if>
<else>
<text term="online" text-case="capitalize-first"/>
<choose>
<if type="motion_picture">
<text term="video" text-case="capitalize-first"/>
</if>
</choose>
</else>
</choose>
</group>
</group>
Expand Down

0 comments on commit 1455165

Please sign in to comment.