zotero / citeproc-rs

CSL processor in Rust.
https://cormacrelf.github.io/citeproc-wasm-demo/
Other
73 stars 11 forks source link

Uncited Items API #67

Closed cormacrelf closed 4 years ago

cormacrelf commented 4 years ago

In sum:

driver.includeUncited("None"); // Default
driver.includeUncited("All");
driver.includeUncited({ Specific: ["citekeyA", "citekeyB"] });

If a reference, known to the driver, is not cited in any of the clusters in the document, it can still be included in the bibliography if it matches the filter set by includeUncited().

This has been tested especially in the context of disambiguating using those uncited items. It lacks an actual test suite to confirm that, but the matter is almost entirely whether those items participate or not.

Also: