Sha256: 0319f6b5b47f75ed525b122fbd7617f42215e80949263122e141d737e43c4d7a
Contents?: true
Size: 1.36 KB
Versions: 4
Compression:
Stored size: 1.36 KB
Contents
Feature: disambiguate As a CSL cite processor hacker I want the test disambiguate_YearSuffixMacroSameYearExplicit to pass @citation @disambiguate @citations Scenario: Year Suffix Macro Same Year Explicit Given the following style: """ <style xmlns="http://purl.org/net/xbiblio/csl" class="note" version="1.0"> <info> <id /> <title /> <updated>2009-08-10T04:49:00+09:00</updated> </info> <citation disambiguate-add-givenname="true" disambiguate-add-year-suffix="true"> <layout> <group delimiter=" "> <names variable="author"> <name form="short" /> </names> <group delimiter=""> <date variable="issued"> <date-part name="year"/> </date> <text variable="year-suffix"/> </group> </group> </layout> </citation> </style> """ And the following input: """ [{"author":[{"family":"Smith","given":"A"}],"id":"ITEM-1","issued":{"date-parts":[[2001]]},"type":"book"},{"author":[{"family":"Smith","given":"B"}],"id":"ITEM-2","issued":{"date-parts":[[2001]]},"type":"book"}] """ And I have a citations input When I cite all items Then the result should be: """ >>[0] A Smith 2001 >>[1] B Smith 2001 """
Version data entries
4 entries across 4 versions & 1 rubygems