(load (string-append laml-dir "laml.scm"))
(laml-style "manual/manual")


Show source file in large font In manual-example: Link from preamble to it's cross reference table entry 2.1. The Manual Document Style
; preamble (set-manual-title "Tutorial Manual - An Example") (set-manual-author "Kurt Nørmark" "normark@cs.auc.dk" "Department of Computer Science" "Aalborg University" "Denmark") (set-manual-abstract "This is just an example of a manual - adapted from an existing LAML example, and part of the LAML tutorial." ) (set-manual-name "manual-example") Show source file in large font In manual-example: Link from the-manual to it's cross reference table entry 2.1. The Manual Document Style
; the-manual (manual-section (section-title "Introduction") (section-body "This is an introduction. Usually it is very brief.") ) (manual-page 'f (title "f") (form '(f a b) ) (description "Description of function f") (parameters (parameter "a" "Explanation of a") (parameter "b" "Explanation of g") ) (pre-condition "What to ensure before f is called") (cross-references (internal-references "similar function" "g") ) (misc "What else to to say about f") ) (manual-page 'g (title "g") (form '(g) ) (description "Description of function g") (parameters ) (pre-condition "What to ensure before g is called") (cross-references (internal-references "Similar function" "f") ) (misc "What else to say about g") ) Show source file in large font In manual-example: Link from manual-production to it's cross reference table entry 2.1. The Manual Document Style 2.2. Mixed use of the manual style and SchemeDoc
; manual-production (make-manual manual-page-list (startup-directory))