hyper-literate/scribble-lib/info.rkt
Leif Andersen a8dec74ffa Add commands for cite-author and cite-year to autobib. (#111)
These commands work like natbib's citeauthor and citeyear commands,
and facilities making possessive citations. For example:

> Thanks to @(cite-author foo)'s (@(cite-year foo)) paper on stuff...

These identifiers are added with `define-cite` as keywords, and thus
can be omitted with no downside for backwards compatibility.

@(define-cite cite citet generate-bib
   #:cite-author cite-author
   #:cite-year cite-year)

Also in this commit:

* Add documentation.

* Add tests for autobib

* Bump version and add history.
2017-05-18 13:07:20 -04:00

27 lines
653 B
Racket

#lang info
(define collection 'multi)
(define deps '("scheme-lib"
"base"
"compatibility-lib"
"scribble-text-lib"
"scribble-html-lib"
"planet-lib" ; used dynamically
"net-lib"
"at-exp-lib"
"draw-lib"
"syntax-color-lib"
"sandbox-lib"
"typed-racket-lib"
))
(define build-deps '("rackunit-lib"))
(define implies '("scribble-html-lib"))
(define pkg-desc "implementation (no documentation) part of \"scribble\"")
(define pkg-authors '(mflatt eli))
(define version "1.22")