diff --git a/info.rkt b/info.rkt index 70187f1..5dd8978 100644 --- a/info.rkt +++ b/info.rkt @@ -3,4 +3,4 @@ (define deps '("base" "graph-lib" "rackunit-lib")) -(define scribblings '(("scribblings/manual.scrbl" ()))) +(define scribblings '(("scribblings/manual.scrbl" (multi-page)))) diff --git a/scribblings/manual.scrbl b/scribblings/manual.scrbl index d688500..249c73c 100644 --- a/scribblings/manual.scrbl +++ b/scribblings/manual.scrbl @@ -1,5 +1,10 @@ #lang scribble/manual +@(require (for-label racket graph)) @title{dds: A Home-made Toolkit for Discrete Dynamical Systems in Racket} -Welcome to my documentation: @racket[(list 'testing 1 2 3)]. \ No newline at end of file +Welcome to my documentation: @racket[(list 'testing 1 2 3)]. + +@table-of-contents[] + +@include-section["utils.scrbl"] diff --git a/scribblings/utils.scrbl b/scribblings/utils.scrbl new file mode 100644 index 0000000..31b5193 --- /dev/null +++ b/scribblings/utils.scrbl @@ -0,0 +1,12 @@ +#lang scribble/manual +@(require (for-label racket graph)) + +@title[#:tag "utils"]{dds/utils: Various Utilities} + +@racketblock[ +(define (nobody-understands-me what) + (list "When I think of all the" + what + "I've tried so hard to explain!")) +(nobody-understands-me "glorble snop") +]