hyper-literate/scribble-lib/scribble/private/manual-bib.rkt
Ben Greenman 1a5f2a44bd
add optional #:note to 'bib-entry' (#176)
Add an optional argument to bib-entry to typeset a comment directly
after a citation --- with no punctuation between the end of the citation
and start of the comment.

Example: making an annotated bibliography, with an element that appears just
below each citation
2018-09-12 22:03:51 -04:00

93 lines
2.8 KiB
Racket

#lang scheme/base
(require racket/contract/base
"../decode.rkt"
"../struct.rkt"
"../basic.rkt"
"on-demand.rkt"
(only-in "../core.rkt" make-style)
"manual-sprop.rkt"
"manual-utils.rkt"
"manual-style.rkt")
(define-struct a-bib-entry (key val))
(provide/contract
[cite ((string?) () #:rest (listof string?) . ->* . element?)]
[bib-entry ((#:key string? #:title (or/c false/c pre-content?))
(#:is-book? boolean? #:author (or/c false/c pre-content?)
#:location (or/c false/c pre-content?)
#:date (or/c false/c pre-content?)
#:url (or/c false/c pre-content?)
#:note (or/c false/c pre-content?))
. ->* .
a-bib-entry?)]
[rename a-bib-entry? bib-entry? (any/c . -> . boolean?)]
[bibliography (() (#:tag string?) #:rest (listof a-bib-entry?) . ->* . part?)])
(define (cite key . keys)
(make-element
#f
(list "["
(let loop ([keys (cons key keys)])
(if (null? (cdr keys))
(make-link-element
#f
(list (car keys))
`(cite ,(car keys)))
(make-element
#f
(list (loop (list (car keys)))
", "
(loop (cdr keys))))))
"]")))
(define (bib-entry #:key key
#:title title
#:is-book? [is-book? #f]
#:author [author #f]
#:location [location #f]
#:date [date #f]
#:url [url #f]
#:note [note #f])
(make-a-bib-entry
key
(make-element
"bibentry"
(append
(if author `(,@(decode-content (list author)) ", ") null)
(if is-book? null '(ldquo))
(if is-book?
(list (italic title))
(decode-content (list title)))
(if location '(",") '("."))
(if is-book? null '(rdquo))
(if location
`(" " ,@(decode-content (list location)) ,(if date "," "."))
null)
(if date `(" " ,@(decode-content (list date)) ".") null)
(if url `(" " ,(link url (tt url))) null)
(if note (decode-content (list note)) null)))))
(define-on-demand bib-style (make-style "RBibliography" scheme-properties))
(define (bibliography #:tag [tag "doc-bibliography"] . citations)
(make-unnumbered-part
#f
`((part ,tag))
'("Bibliography")
'()
null
(make-flow
(list
(make-table
bib-style
(map (lambda (c)
(let ([key (a-bib-entry-key c)]
[val (a-bib-entry-val c)])
(list
(to-flow (make-target-element #f `("[" ,key "]") `(cite ,key)))
flow-spacer
(to-flow val))))
citations))))
null))