hyper-literate/scribble-lib/info.rkt
Matthew Flatt 7278568040 section links plus scriblib/{autobib,figure}: better match acmart
Add a `link-render-style` syntax property to control the rendering of
section links --- so that HTML output can say "section <number>", and
so that Latex/PDF output can have just the section number hperlinked
(as in acmart).

It seems unfortunate that the link rendering is so hardwired into each
rendering back-end, but maybe this can be made even more configurable
in the future. Meanwhile, Latex macros already provide an additional
layer of rendering control (but not enough, it turns out, to easily
perform the same adjustments as the 'number mode that matches acmart).

For `scriblib/figure` make `figure-ref` and `Figure-ref` similarly
sensitive to the link-rendering style.

For `scriblib/autobib`, change the hyperlinking of references
so that the color can be overridden, and make `scribble/acmart`
override it.
2017-10-11 11:19:44 -06: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.26")