fix local TOC in latex output

svn: r6288

original commit: 7d9f2d8b6a8365c7246012e55a73b03eb6f52322
This commit is contained in:
Matthew Flatt 2007-05-25 01:54:44 +00:00
parent 2db9f68d91
commit 97d55239bd
3 changed files with 14 additions and 2 deletions

View File

@ -254,6 +254,9 @@
(define/public (table-of-contents part ht)
(make-table #f (render-toc part #t)))
(define/public (local-table-of-contents part ht)
(table-of-contents part ht))
(define/private (render-toc part skip?)
(let ([number (collected-info-number (part-collected-info part))])
(let ([subs

View File

@ -178,12 +178,18 @@
;; ----------------------------------------
(provide table-of-contents)
(provide table-of-contents
local-table-of-contents)
(define (table-of-contents)
(make-delayed-flow-element
(lambda (renderer part ht)
(send renderer table-of-contents part ht)))))
(send renderer table-of-contents part ht))))
(define (local-table-of-contents)
(make-delayed-flow-element
(lambda (renderer part ht)
(send renderer local-table-of-contents part ht)))))

View File

@ -229,6 +229,9 @@
;; FIXME: isn't local to the section
(make-toc-paragraph null))
(define/override (local-table-of-contents part ht)
(make-paragraph null))
;; ----------------------------------------
(super-new))))