hyper-literate/scribble-lib/scriblib/book-index.rkt
Matthew Flatt 5f29095f02 scribble/book-index: more book-like index style for Latex/PDF
Merge index entries that have the same key and use cleveref to
render the page-number sequence.
2017-12-18 11:07:02 -07:00

13 lines
280 B
Racket

#lang racket/base
(require racket/runtime-path
scribble/latex-properties)
(provide book-index-style-properties)
(define-runtime-path book-index.tex "book-index.tex")
(define book-index-style-properties
(list
(tex-addition book-index.tex)
'enable-index-merge))