citeproc

Generates citations and bibliography from CSL styles.

Version on this page:0.3.0.9
LTS Haskell 22.14:0.8.1
Stackage Nightly 2024-03-28:0.8.1
Latest on Hackage:0.8.1

See all snapshots citeproc appears in

BSD-2-Clause licensed by John MacFarlane
Maintained by [email protected]
This version can be pinned in stack with:citeproc-0.3.0.9@sha256:e3652bf23caf01c976c87d549885b1e9e4a3a86363494cd82669230e0d4da8ba,5590

citeproc

BSD2 license CI tests Hackage

This library generates citations and bibliography formatted according to a CSL style. Currently version 1.0.2 of the CSL spec is targeted.

This library is a successor to pandoc-citeproc, which was a fork of Andrea Rossato’s citeproc-hs. I always found it difficult to fix bugs in pandoc-citeproc and decided that implementing citeproc from scratch would give me a better basis for understanding. This library has a number of other advantages over pandoc-citeproc:

  • it is much faster (as a rough benchmark, running the CSL test suite takes less than 4 seconds with this library, compared to 12 seconds with pandoc-citeproc)

  • it interprets CSL more faithfully, passing more of the CSL tests

  • it has fewer dependencies (in particular, it does not depend on pandoc)

  • it is more flexible, not being tied to pandoc’s types.

Unlike pandoc-citeproc, this library does not provide an executable. It will be used in pandoc itself to provide integrated citation support and bibliography format conversion (so the pandoc-citeproc filter will no longer be necessary).

How to use it

The main point of entry is the function citeproc from the module Citeproc. This takes as arguments:

  • a CiteprocOptions structure (which currently just allows you to set whether citations are hyperlinked to the bibliography)

  • a Style, which you will want to produce by parsing a CSL style file using parseStyle from Citeproc.Style.

  • Optionally a Lang, which allows you to override a default locale,

  • a list of References, which you can produce from a CSL JSON bibliography using aeson’s decode,

  • a list of Citations (each of which may have multiple CitationItems).

It yields a Result, which includes a list of formatted citations and a formatted bibliography, as well any warnings produced in evaluating the style.

The types are parameterized on a CiteprocOutput instance a, which represents formatted content in your bibliographic fields (e.g. the title). If you want a classic CSL processor, you can use CslJson Text. But you can also use another type, such as a pandoc Inlines. All you need to do is define an instance of CiteprocOutput for your type.

The signature of parseStyle may not be self-evident: the first argument is a function that takes a URL and retrieves the text from that URL. This is used to fetch the “indendent parent” of a dependent style. You can supply whatever function you like: it can search your local file system or fetch the content via HTTP. If you’re not using dependent styles, you can get by with \_ -> return mempty.

The citeproc executable

If the package is compiled with the executable flag, an executable citeproc will be built. citeproc reads a JSON-encoded Inputs object from stdin (or from a file if a filename is provided) and writes a JSON-encoded Result object to stdout. This executable can be used to add citation processing to non-Haskell projects.

citeproc --help will summarize usage information. See the man page for more information.

Known bugs and limitations

Although this library is much more accurate in implementing the CSL spec than pandoc-citeproc was, it still fails some of the tests from the CSL test suite (67/862). However, most of the failures are on minor corner cases, and in many cases the expected behavior goes beyond what is required by the CSL spec. (For example, we intentionally refrain from capitalizing terms in initial position in note styles. It makes more sense for the calling program, e.g. pandoc, to do the capitalization when it puts the citations in notes, since some citations in note styles may already be in notes and in this case their rendering may not require capitalization. It is easy to capitalize reliably, hard to uncapitalize reliably.)

Changes

citeproc changelog

0.3.0.9

  • Implement et-al-subsequent-min and et-al-subsequent-use-first (#60).

0.3.0.8

  • In parsing abbreviations JSON, ignore top-level fields besides “default” (#57), e.g. “info” which is used in Zotero’s default abbreviations file.

0.3.0.7

  • Remove check for ASCII in case transform code. Previously we weren’t doing case transform on words containing non-ASCII characters.

0.3.0.6

  • Fix infinite loop in fixPunct (#49). In a few rare cases fixPunct would hang.

0.3.0.5

  • Add a space between “no date” term and disambiguator if the long form is used (#47).

0.3.0.4

  • Improve disambiguation code. Add type signatures, move some functions to the top-level, and make the logic clearer and more efficient.
  • Re-render after each stage of ambiguity resolution instead of relying on analysis of names and dates. This is necessary especially for styles like chicago-note-bibliography which use titles in citations. Closes #44. No measurable performance impact.
  • Update test suite from upstream.
  • Update it-IT locale.

0.3.0.3

  • Fix author-only citations (#43). We got bad results with some styles when a reference had both an author and a translator.

0.3.0.2

  • Don’t use cite-group delimiter if ANY citation in group has locator (#38). This seems to be citeproc.js’s behavior and it gives better results for chicago-author-date: we want both [@foo20; @foo21, p. 3] and [@foo20, p. 3; @foo21] to produce a semicolon separator, rather than a comma.

0.3.0.1

  • Better handle initialize-with that ends in a nonbreaking space. In this case, citeproc should not add an additional space or strip the nonbreaking space. Closes #37.

0.3

  • Change makeReferenceMap to return a cleaned-up list of references as well as a reference map. The cleanup-up list removes references with duplicate ids. When there are multiple references with the same id, the last one is included and the others discarded. [API change]

0.2.0.1

  • FromJSON for Name: make straight quotes curly. Otherwise nothing will do this, when we are decoding JSON to (Reference a), a /= CslJson Text.
  • Remove redundant pragmas and imports (Albert Krewinkel).
  • Use custom prelude with GHC 8.6.* and older (Albert Krewinkel). This adds support for GHC 8.0.x.

0.2

  • Remove AfterOtherPunctuation constructor from CaseTransformState [API change]. This gave bad results with things like parentheses (#27).
  • Change SortKeyValue to include Maybe Lang [API change]. This allows us to do locale-sensitive sorting (though this won’t matter much unless the icu flag is used).
  • Add Maybe Lang parameter on initialize (since capitalization can be locale-dependent).
  • Add cabal.project.icu for building with icu lib.
  • Add (unexported) Citeproc.Unicode compatibility module. This allows us to use the same functions whether or not the icu flag is used.

0.1.1.1

  • Pay attention to citationNoteNumber in computing position. In calculating whether an item is alone in its citation, we need to take into account citationNoteNumber, since two citations may occur in the same note and they should not be ranked “alone.” See jgm/pandoc#6813, citation-style-language/documentation#121

0.1.1

  • Ensure that uncited references are sorted last when it comes to assigning citation numbers (#22).
  • Remove “capitalize initial term” feature. This is required by the test suite but not the spec. It makes more sense for us to do this capitalization in the calling program, e.g. pandoc. For some citations in note styles may already be in notes and thus not trigger separate footnotes. If initial terms had been capitalized, we’d need to uncapitalize, and that is hard to do reliably.
  • Treat empty FancyVal as an empty value.
  • Derive Functor, Traversable, Foldable for Result [API change].

0.1.0.3

  • Better handling of author-only/suppress-author. Previously all results of “names” elements were treated as authors. But only the first should be (generally this is the author, but it could be the editor of an edited volume with no author). See jgm/pandoc#6765.

0.1.0.2

  • Don’t enclose contents of e:choose in a Formatted element (#19). The e:choose element is “transparent” and the delimiter controlling its formatting should be inserted between the items it returns.

0.1.0.1

  • Fix sorting when no <sorting> element given. The spec says: “In the absence of cs:sort, cites and bibliographic entries appear in the order in which they are cited.” This affects IEEE in particular. See jgm/pandoc#6741.

  • Improve sameNames and citation grouping. Preivously if a citation item had a prefix, it would not be grouped with following citations. See jgm/pandoc#6722 for discussion.

  • Remove unneeded hasNoSuffix check in sameNames.

  • Remove unneeded import

  • citeproc executable: strip BOM before parsing style (#18).

0.1

  • Initial release.