(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 |