On this page:
cite
bibliography
bib-entry
bib-entry?
Version: 4.1.3

11.10 Bibliography

(cite key)  element?
  key : string?

Links to a bibliography entry, using key both to indicate the bibliography entry and, in square brackets, as the link text.

(bibliography [#:tag tag] entry ...)  part?
  tag : string? = "doc-bibliography"
  entry : bib-entry?

Creates a bibliography part containing the given entries, each of which is created with bib-entry. The entries are typeset in order as given.

(bib-entry #:key key    
  #:title title    
  [#:is-book? is-book?    
  #:author author    
  #:location location    
  #:date date    
  #:url url])  bib-entry?
  key : string?
  title : any/c
  is-book? : any/c = #f
  author : any/c = #f
  location : any/c = #f
  date : any/c = #f
  url : any/c = #f

Creates a bibliography entry. The key is used to refer to the entry via cite. The other arguments are used as elements in the entry:

(bib-entry? v)  boolean?
  v : any/c

Returns #t if v is a bibliography entry created by bib-entry, #f otherwise.