Lecture overview
Keyboard shortcut: 'u'  Previous page
Keyboard shortcut: 'p'  Next page
Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide
Keyboard shortcut: 't'  Help page about these notes  Alphabetic index  Course home    Slide 11 : 26
An abstracted version

(load "html4-extended-loading-stuff.scm")

(html-write
 (html-page 
   "Another LAML Example"
  
   (table-by-rows 1
     (row        ""               "Germany"   "Denmark"   "USA")
     (row        "Currency"       "DMark"     "Kroner"    "Dollar")
     (row        "Prime minister" "Schröder"  "Rasmussen" "-")
     (row        "President"      "??"        "-"         "Clinton")
   )

   (p)

   (a-tag "../goerlitz.html" "Top level lecture page")
  )
)

An abstracted version of the previous example.

includes/html4-extended-loading-stuff.scmThe loading stuff used by the abstracted LAML example above.

The loading stuff used by the abstracted LAML example above.

Go to exerciseA tabular function
Go to exerciseA tabular list of input