Play audio slide show -- Keyboard shortcut: 'x'  Back to slide -- Keyboard shortcut: 'u'                meta-lecture-notes.laml - The LAML source of this page.Slide 30 : 38
Program 1

(note-page 'id "show-and-speak"
  (title (main-text "Show-and-speak and subclauses")
         (annotation "This illustrate the show and speak facility in LENO. Notice, as for quizzes, that this does 
                      not affect the generated note pages directly, as does most other note page clauses.
                      Try out 'show-and-speak' from slide view by activating top leftmost 'spinning atom' icon.
                      You will notice that first the slide is show, then the program, and finally the slide again.
                      Currently, we have not made a sound file to play in the background.")
  )

  (show-and-speak
   (slide-part
    'number "1"
    'seconds "5" )
   (program-part
    'number "1"
    'seconds "5" )
   (image-series-part
     'number "1"
     (image-part 'seconds "6")
     (image-part 'seconds "7")
   )
   (slide-part
    'number "2"
    'seconds "6" )
  )

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

  (image-series
   'title "This is an image series, which is shown external to the slide view"
   (image-series-item
    'src "test-image-1.gif"
    "This is the caption of the first image in the series" )
   (image-series-item
    'src "test-image-2.gif"
    "This is the caption of the second image in the series" )
   'slide-mode "external"
   'book-mode "inline"
  )

  (cross-references
   (internet-reference 'href (man-entry "show-and-speak")
     (main-text "Manual entry"))
   )

  (index-words
  )
) ; end note-page