Learn R Programming

pandocfilters (version 0.1-6)

OrderedList: Ordered List

Description

Constructs a block object of type "OrderedList".

Usage

OrderedList(lattr, llblocks)

Arguments

lattr

a list of attributes

llblocks

a list of lists of blocks

Examples

Run this code
ordered_1 <- Plain("A")
ordered_2 <- list(Plain(Str("B")))
ordered_3 <- list(Plain(list(Str("C"))))
OrderedList(ListAttributes(), ordered_1)
OrderedList(ListAttributes(), list(ordered_1, ordered_2, ordered_3))

Run the code above in your browser using DataLab