This commit is contained in:
gferg 2001-01-25 22:16:22 +00:00
parent 0e15f02677
commit 2e49188d71
1 changed files with 16 additions and 5 deletions

View File

@ -115,13 +115,20 @@
;; when producing HTML files, use this extension
".html")
(define %generate-book-toc%
;; Should a Table of Contents be produced for books?
#t)
(define %generate-article-toc%
;; Should a Table of Contents be produced for Articles?
;; If true, a Table of Contents will be generated for each 'Article'.
;; Should a Table of Contents be produced for articles?
#t)
(define %generate-part-toc%
;; show a partial table of contents on books; usually at chapter level
;; Should a Table of Contents be produced for parts?
#t)
(define %generate-book-titlepage%
;; produce a title page for books
#t)
(define %generate-article-titlepage%
@ -132,6 +139,10 @@
;; forces the Table of Contents on separate page
'())
(define (list-element-list)
;; fixes bug in Table of Contents generation
'())
(define %root-filename%
;; The filename of the root HTML document (e.g, "index").
"index")