Feature: disambiguate As a CSL cite processor hacker I want the test disambiguate_BasedOnSubsequentFormWithBackref to pass @citation @disambiguate @citation-items Scenario: Based On Subsequent Form With Backref Given the following style: """ """ And the following input: """ [{"author":[{"family":"Doe","given":"John","static-ordering":false}],"id":"ITEM-1","issued":{"date-parts":[["2000"]]},"title":"His Book","type":"book"},{"author":[{"family":"Doe","given":"John","static-ordering":false}],"id":"ITEM-2","issued":{"date-parts":[["2001"]]},"title":"His Other Book","type":"book"},{"author":[{"family":"Roe","given":"Jane","static-ordering":false}],"id":"ITEM-3","issued":{"date-parts":[["1998"]]},"title":"Her Book","type":"book"},{"author":[{"family":"Roe","given":"Jane","static-ordering":false}],"id":"ITEM-4","issued":{"date-parts":[["1999"]]},"title":"Her Other Book","type":"book"}] """ When I cite the following items: """ [[{"id":"ITEM-1","note-number":"1"},{"id":"ITEM-2","note-number":"1"}],[{"id":"ITEM-3","note-number":"2"}],[{"id":"ITEM-4","note-number":"3"}],[{"first-reference-note-number":"1","id":"ITEM-1","note-number":"4","position":1}],[{"first-reference-note-number":"2","id":"ITEM-3","note-number":"5","position":1}]] """ Then the results should be: | John Doe, His Book (2000); John Doe, His Other Book (2001). | | Jane Roe, Her Book (1998). | | Jane Roe, Her Other Book (1999). | | Doe, His Book, supra note 1. | | Roe, Her Book, supra note 2. |