#reader(lib "docreader.ss" "scribble") @require[(lib "manual.ss" "scribble")] @require["utils.ss"] @require-for-syntax[mzscheme] @define-syntax[def-section-like (syntax-rules () [(_ id result/c x ...) (defproc (id [#:tag tag (or/c false/c string?) #f] [pre-content any/c] (... ...+)) result/c x ...)])] @define-syntax[def-elem-proc (syntax-rules () [(_ id x ...) (defproc (id [pre-content any/c] (... ...)) element? x ...)])] @define-syntax[def-style-proc (syntax-rules () [(_ id) @def-elem-proc[id]{Like @scheme[elem], but with style @scheme['id]}])] @title[#:tag "basic"]{Basic Document Forms} The @file{basic.ss} libraryprovides functions and forms that can be used from code written either in Scheme or with @elem["@"] expressions. For example, the @scheme[title] and @scheme[italic] functions might be called from Scheme as @schemeblock[ (title #:tag "how-to" "How to Design " (italic "Great") " Programs") ] or with an @elem["@"] expression as @verbatim[ #<string] on the parsed @scheme[pre-content] list. } @section{Tables of Contents} @defproc[(table-of-contents) delayed-flow-element?]{ Returns a flow element that expands to a table of contents for the enclosing section. For LaTeX output, however, the table of contents currently spans the entire enclosing document. }