| (note-page 'tabular
(title "Tabular"
"A tabular overview with a number of columns and rows"
)
(tabular 2 (list 100 50 200)
(list
(list (b "Header 1") (b "Header 2") (b "Header 3"))
(list "Cell 1,1" "Cell 1,2" "Cell 1,3" )
(list "Cell 2,1" "Cell 2,2" "Cell 2,3" )
(list "Cell 3,1" "Cell 3,2" "Cell 3,3" )
)
"An explanation of the table"
)
(source-program this-source-file (list "(note-page 'tabular" end-marker)
(list
)
'(slide-external book-external)
"The underlying LAML program. This shows the underlying source of this part of the notes"
)
(index-words "tabular")
) ; end page |