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

(note-page 'id "tabular"
  (title (main-text "Tabular and its subclauses")
         (annotation "This page illustrates the tabular clause and its subclauses")
  )

  (tabular
   'border "2"
   (row-widths
    (cell "100")
    (cell "200")
    (cell "300") )
   (row
    (cell "Row")
    (cell "number")
    (cell "one"))
   (row
    (cell "Row")
    (cell "number")
    (cell "two"))
   (row
    (cell "Row")
    (cell "number")
    (cell "three"))
   (annotation
    "A comment to the table")
  )

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

) ; end note-page