Portability | unportable |
---|---|
Stability | unstable |
Maintainer | Andrea Rossato <andrea.rossato@unitn.it> |
Safe Haskell | None |
The Reference type
- data Value = forall a . Data a => Value a
- type ReferenceMap = [(String, Value)]
- mkRefMap :: Data a => a -> ReferenceMap
- formatField :: String -> String
- fromValue :: Data a => Value -> Maybe a
- isValueSet :: Value -> Bool
- data Empty = Empty
- data Agent = Agent {
- givenName :: [String]
- droppingPart :: String
- nonDroppingPart :: String
- familyName :: String
- nameSuffix :: String
- literal :: String
- commaSuffix :: Bool
- data RefDate = RefDate {}
- data RefType
- = NoType
- | Article
- | ArticleMagazine
- | ArticleNewspaper
- | ArticleJournal
- | Bill
- | Book
- | Broadcast
- | Chapter
- | Dataset
- | Entry
- | EntryDictionary
- | EntryEncyclopedia
- | Figure
- | Graphic
- | Interview
- | Legislation
- | LegalCase
- | Manuscript
- | Map
- | MotionPicture
- | MusicalScore
- | Pamphlet
- | PaperConference
- | Patent
- | Post
- | PostWeblog
- | PersonalCommunication
- | Report
- | Review
- | ReviewBook
- | Song
- | Speech
- | Thesis
- | Treaty
- | Webpage
- newtype CNum = CNum {}
- data Reference = Reference {
- refId :: String
- refType :: RefType
- author :: [Agent]
- editor :: [Agent]
- translator :: [Agent]
- recipient :: [Agent]
- interviewer :: [Agent]
- composer :: [Agent]
- illustrator :: [Agent]
- originalAuthor :: [Agent]
- containerAuthor :: [Agent]
- collectionEditor :: [Agent]
- editorialDirector :: [Agent]
- reviewedAuthor :: [Agent]
- issued :: [RefDate]
- eventDate :: [RefDate]
- accessed :: [RefDate]
- container :: [RefDate]
- originalDate :: [RefDate]
- submitted :: [RefDate]
- title :: String
- titleShort :: String
- reviewedTitle :: String
- containerTitle :: String
- collectionTitle :: String
- containerTitleShort :: String
- collectionNumber :: String
- originalTitle :: String
- publisher :: String
- originalPublisher :: String
- publisherPlace :: String
- originalPublisherPlace :: String
- authority :: String
- jurisdiction :: String
- archive :: String
- archivePlace :: String
- archiveLocation :: String
- event :: String
- eventPlace :: String
- page :: String
- pageFirst :: String
- numberOfPages :: String
- version :: String
- volume :: String
- numberOfVolumes :: String
- issue :: String
- chapterNumber :: String
- medium :: String
- status :: String
- edition :: String
- section :: String
- source :: String
- genre :: String
- note :: String
- annote :: String
- abstract :: String
- keyword :: String
- number :: String
- references :: String
- url :: String
- doi :: String
- isbn :: String
- issn :: String
- pmcid :: String
- pmid :: String
- callNumber :: String
- dimensions :: String
- scale :: String
- categories :: [String]
- citationNumber :: CNum
- firstReferenceNoteNumber :: Int
- citationLabel :: String
- emptyReference :: Reference
- numericVars :: [String]
- parseLocator :: String -> (String, String)
- getReference :: [Reference] -> Cite -> Reference
- processCites :: [Reference] -> [[Cite]] -> [[(Cite, Reference)]]
- setCitationNumber :: [[(Cite, Reference)]] -> [[(Cite, Reference)]]
- setPageFirst :: Reference -> Reference
- setNearNote :: Style -> [[Cite]] -> [[Cite]]
- readNum :: String -> Int
Documentation
An existential type to wrap the different types a Reference
is
made of. This way we can create a map to make queries easier.
type ReferenceMap = [(String, Value)]Source
mkRefMap :: Data a => a -> ReferenceMapSource
formatField :: String -> StringSource
isValueSet :: Value -> BoolSource
Agent | |
|
The Reference
record.
numericVars :: [String]Source
parseLocator :: String -> (String, String)Source
getReference :: [Reference] -> Cite -> ReferenceSource
setNearNote :: Style -> [[Cite]] -> [[Cite]]Source