racket/collects/tests/scribble/docs/autobib-disambiguation.scrbl
Eli Barzilay 084f1dcea7 Use the new `wrap-line' in the scribble text renderer.
Looks like it's not making any changes in the current tests (which use
the text renderer), but with words that are longer than the width the
old version would stop wrapping afetr these words.  Added a test file
that fails with that and succeeds with the new one.  If anyone cares
about this, it's easy to make hyphenate words that are too long for a
line.

(Also fixed some redundant frustration in the bib test...)
2012-05-06 08:17:36 -04:00

26 lines
708 B
Racket

#lang scribble/base
@(require scriblib/autobib)
@(define-cite cite citet gen-bib)
@(define a (make-bib #:title "Diss 1"
#:is-book? #t
#:location (dissertation-location #:institution "NEU")
#:author (authors "Little" "Bo" "Peep")
#:date "2012"))
@(define b (make-bib #:title "Diss 2"
#:is-book? #t
#:location (dissertation-location #:institution "NEU")
#:author (authors "Little" "Bo" "Peep")
#:date "2012"))
According to the following people,
@cite[a]
@cite[b]
@citet[a]
@citet[b]
@cite[a b]
@cite[b a]
@citet[a b]
@citet[b a]
@gen-bib[]