scribble-enhanced/pkgs/scribble-pkgs/scribble-test/tests/scribble/docs/autobib-order.scrbl
Matthew Flatt 6c624d531e move Scribble tests to "scribble-test"
original commit: ba553a917e3e97c74450859dc13481e2187c55ba
2013-07-18 15:20:51 -06:00

20 lines
692 B
Racket

#lang scribble/base
@(require scriblib/autobib)
@(define-cite cite citet gen)
@(define a (make-bib #:title "Diss 1"
#:is-book? #t
#:location (dissertation-location #:institution "NEU")
#:author (authors (author-name "Little Bo" "Peep") (author-name "Samwise" "Gamgee"))
#:date "2012"))
@(define b (make-bib #:title "Diss 2"
#:is-book? #t
#:location (dissertation-location #:institution "NEU")
#:author (authors (author-name "Ayo" "Shucks"))
#:date "2012"))
Order matters. Must sort by last names.
@cite[b]
@cite[a]
@(gen)