;; This is a trail of common slides intended for IWPC in Limerick. ; Practical preentation notes: Have a background browser of acrobat reader with literate example (load (string-append laml-dir "laml.scm")) ; Start of preamble section (define _ #f) (define note-source-directory (startup-directory)) ; The directory where the note sources are located. ; Full, absolute path. Must be terminated by a slash. (define current-lecture 1) (define lecture-sections (list (list "linkoping-talk" "Elucidative Programming") ) ) (define notes-title (cadr (car lecture-sections))) ; Set the notes title to the chapter title, defined above. (define course-home-url "http://www.cs.auc.dk/~normark/elucidative-programming/index.html") (define author-home-url "http://www.cs.auc.dk/~normark/") (define note-download-url "") ; The url from which to download the set of notes. If empty string no download (define (cross-reference-location-hints location-list) ; No location hints "") ; A parameter-less function returns A list of meta-tag contribution (define (meta-tag-clauses) (list (list 'HTTP-EQUIV "Content-Type" 'content "text/html; charset = ISO-8859-1") (list 'name "Generator" 'content "LAML") (list 'name "description" 'lang (meta-language language-preference) 'content "Slides on Elucidative Programming") ) ) (style "lecture-notes/lecture-notes") (define front-index? #f) ; No front index; not needed because there is only one chaper. (define slide-header? 'minimal) ; alternatives: none, minimal, normal (define trail-of-lecture? #f) (set-language 'english) ; The fixed, system defined text are in English (set-lecture-name (car (car lecture-sections))) ; Define the name of this lecture to the common of lecture-sections (def. earlier) (set-lecture-number #f) ; Define the lecture numerb (lecture-intro "Elucidative Programming" (list "Kurt Nørmark" "Department of Computer Science" "Aalborg University" "Denmark" ) "Theses slides are intended for a presentation of the elucidators in Linkoping, September 27, 2002. " ) (define check-html-attributes? #f) ; --------------------------------------------------------------------------------------------------------------- ; Now ready for deletions and exchanges: (note-trail 'linkoping-talk (slide-select 'common 'overall-section) (slide-select 'common 'doc-kinds) ; (slide-select 'common 'doc-views) (slide-select 'common 'integr-doc) (slide-select 'common 'literate-section) (slide-select 'common 'literate-programming) ; (slide-select 'common 'literate-example) (slide-select 'common 'web-struktur) (slide-select 'common 'web-struktur-more) ; (slide-select 'common 'literate-tools) (slide-select 'common 'literate-problems) (slide-select 'common 'elucidative-section) (slide-select 'common 'elucidative-word) (slide-select 'common 'elucidative-programming) ; (slide-select 'common 'elucidative-requirements) ; (slide-select 'common 'example-1) ; (slide-select 'common 'example-2) (slide-select 'common 'example-3) (slide-select 'common 'model) ; (slide-select 'common 'documentation-source) ; ?? ; (slide-select 'common 'documentation-source-java) (slide-select 'common 'elucidative-tools) (slide-select 'common 'elucidator-tool) (slide-select 'common 'editor-tool) (slide-select 'common 'browser-tool) ; (slide-select 'common 'integration-issues) ; (slide-select 'common 'tool-philosophy) ; (slide-select 'common 'scheme-elucidator) ; ?? ; (slide-select 'common 'java-elucidator) ; ?? ; (slide-select 'common 'java-elucidator-design) ; (slide-select 'common 'small-things) ; (slide-select 'common 'nwper-questions) (slide-select 'common 'usage) (slide-select 'common 'experience-section) (slide-select 'common 'edu-experience) (slide-select 'common 'indu-experience) (slide-select 'common 'indu-quotes) (slide-select 'common 'status-conclu-sec) (slide-select 'common 'conclu) (slide-select 'common 'further-info-section) (slide-select 'common 'further-info) )