diff --git a/collects/tests/scribble/docs/autobib.scrbl b/collects/tests/scribble/docs/autobib.scrbl new file mode 100644 index 00000000..b12b38e2 --- /dev/null +++ b/collects/tests/scribble/docs/autobib.scrbl @@ -0,0 +1,19 @@ +#lang scribble/base +@(require scriblib/autobib) + +@(define-cite cite citet gen) + +@(define redex + (make-bib + #:author (authors "Matthias Felleisen" "Robert Bruce Findler" "Matthew Flatt") + #:title "Semantics Engineering with PLT Redex" + #:location (book-location #:publisher "MIT Press") + #:is-book? #t + #:date "2010")) + +@cite[redex] +@cite[(in-bib redex ", part I")] +@cite[(in-bib redex ", part II")] +@cite[redex] + +@(gen) diff --git a/collects/tests/scribble/docs/autobib.txt b/collects/tests/scribble/docs/autobib.txt new file mode 100644 index 00000000..ae1d1745 --- /dev/null +++ b/collects/tests/scribble/docs/autobib.txt @@ -0,0 +1,9 @@ + + (Felleisen et al. 2010) + (Felleisen et al. 2010, part I) + (Felleisen et al. 2010, part II) + (Felleisen et al. 2010) + +Bibliography + +Matthias Felleisen, Robert Bruce Findler, and Matthew Flatt. Semantics Engineering with PLT Redex. MIT Press, 2010. \ No newline at end of file