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

(note-page 'id "synopsis"
  (title (main-text "Synopsis and subclauses")
         (annotation "This illustrates the synopsis clause")
  )

  (synopsis 
   (synopsis-item  
    (main-text "This is synopsis item 1"
               ) 
    (annotation "First synopsis annotation"
                ))
   (synopsis-item  
    (main-text "This is synopsis item 2"
               ) 
    (annotation "Second synopsis annotation"
  )))

  (source-program
   'src "meta-lecture-notes.laml"
   'from-mark "(note-page 'id \"synopsis\""
   '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 "synopsis")
   (main-text "Manual entry")))
) ; end note-page