citeproc-hs-0.2: A Citation Style Language implementation in Haskell

Portabilityunportable
Stabilityunstable
MaintainerAndrea Rossato <andrea.rossato@unitn.it>

Text.CSL.Proc.Disamb

Description

This module provides functions for processing the evaluated Output for citation disambiguation.

Describe the disambiguation process.

Synopsis

Documentation

disambCitations :: Style -> [Reference] -> [[(String, String)]] -> [CitationGroup]Source

Given the Style, the list of references and the citation groups, disambiguate citations according to the style options.

disambWithNames :: Bool -> Bool -> [CiteData] -> [CiteData]Source

Disambiguate a list of CiteData by adding names to the list of contributors, thus overriding et-al options, if the first Bool is True, and/or by adding given-names if the second Bool is True.

updateOutput :: [CiteData] -> Output -> OutputSource

Given the list of CiteData with the disambiguated field set update the evaluated citations by setting the contributor list accordingly.

procGroup :: Style -> [(String, Reference)] -> CitationGroupSource

Given the CSL Style and the list of References coupled with their position, generate a CitationGroup. The citations are sorted according to the Style.

reEvaluate :: Style -> [CiteData] -> [(String, Reference)] -> CitationGroup -> CitationGroupSource

Evaluate again a citation group with the EvalState disamb field set to True (for matching the "disambiguate" condition).

hasIfDis :: IfThen -> [Bool]Source

Check if the Style has any conditional for disambiguation. In this case the conditional will be try after all other disambiguation strategies have failed. To be used with the generic query function.

getCitDisambOptions :: Style -> [String]Source

Get the list of disambiguation options set in the Style for citations.

getRefs :: [Reference] -> [[(String, String)]] -> [[(String, Reference)]]Source

Set the locator, the citationNumber and the position for each citation, with the list of References and the list of citation groups (citation keys with locators).

getDuplCiteData :: [CitationGroup] -> [[CiteData]]Source

Group citation data (with possible alternative names) of citations which have a duplicate (same collision and same citYear).

getCiteData :: Output -> [CiteData]Source

For an evaluated citation get its CiteData. The disambiguated citation and the year fields are empty.

type NamesYear = ([Output], String)Source

The contributors diambiguation data, the list of names and give-names, and the citation year (OYear).

getDuplNamesYear :: [CitationGroup] -> [NamesYear]Source

Get the contributors list (OContrib) and the year occurring in more then one citation.

getNamesYear :: Output -> [(String, NamesYear)]Source

Get the list of citation keys coupled with their NamesYear in the evaluated Output.

disambiguate :: Eq a => [[a]] -> [[a]]Source

Try to disambiguate a list of lists by returning the first non colliding element, if any, of each list:

 disambiguate [[1,2],[1,3],[2]] = [[2],[3],[2]]

same :: Eq a => [a] -> [Bool]Source

For each element a list of Bool: True if the element has a duplicate in the list:

 same [1,2,1] = [True,False,True]

hasDuplicates :: Eq a => [a] -> BoolSource

allTheSame :: Eq a => [a] -> BoolSource