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

(note-page 'id "image"
  (title (main-text "Image - two instances of image")
         (annotation "An illustration of an image clause")
  )

  (image
   'src "test-image-1.gif"
   (main-text
    "The image caption of the first image"
   )
  )

  (image
   'src "test-image-2.gif"
   'alignment "vertical"
   'first "picture"
   'second "text"
   (main-text
    "The image caption of the second image"
    )
  )


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

) ; end note-page