7.2

13 Lists

The difference between an unordered list and an ordered list is a #:tag.

An unordered list:

@itemlist[
    @item{Here is an item}
    @item{Here is another item}
    @item{aaaand yet another item}]

An ordered list:

@itemlist[#:style 'ordered
    @item{Here is an item}
    @item{Here is another item}
    @item{aaaand yet another item}]

Outputs:

  1. Here is an item

  2. Here is another item

  3. aaaand yet another item