Module Sebib.AuthorList


module AuthorList: sig .. end
Module managing the lists of authors.

type author = string * string 
The type of authors: (first_name, family_name)
type t = author list 
The type of the author lists.
type style = [ `acm | `bibtex | `comas | `comas_and | `et_al ] 
The formatting style available.
val to_string : ?style:style -> t -> string
Convert a list of authors to a formatted string.