Play audio slide show -- Keyboard shortcut: 'x'  Back to notes -- Keyboard shortcut: 'u'                Slide 29 : 38
Program 1
 

(note-page 'id "quiz"
  (title (main-text "Quiz")
         (annotation "This illustrates the quiz clause. Notice that there is no note page contribution 
                      of a quiz clause. Rather, an internal structure in the internal directory is defined.")
  )

  (quiz
   (question
    "Do you like LENO" )
   (answers
    (answer 'correctness "100"
       (answer-possibility "yes" ) (answer-clarification "I am glad to hear..." ))
    (answer 'correctness "0"
       (answer-possibility "no" ) (answer-clarification "An impossible answer..." ))
    (answer 'correctness "50"
       (answer-possibility "maybe" ) (answer-clarification "Really - I am surprised :-)" ))
   )
  )

  (source-program
   'src "meta-lecture-notes.laml"
   'from-mark "(note-page 'id \"quiz\""
   'to-mark end-mark 
   'slide-mode "external"
   'book-mode "inline"
   (color-decorations
   )
   (main-text
    "The LAML source of this page")
  )

  (cross-references
   (internet-reference 'href (man-entry "quiz")
     (main-text "Manual entry"))
   (internet-reference 'href "http://www.cs.auc.dk/~normark/cgi-bin/quiz/show-quiz.cgi?quiz%2dfilename=%2fuser%2fnormark%2fscheme%2fstyles%2fxml%2din%2dlaml%2flecture%2dnotes%2fman%2fmeta%2dexample%2finternal%2fmeta%2dlecture%2dnotes%2equiz&activation%2dmode=present"
     (main-text "The quiz itself - requires connection to the Internet")))
) ; end note-page