pixiedust (version 0.8.5)

sprinkle_longtable: Change the Longtable Property in a Dust Table

Description

The LaTeX longtable package allows for long tables to be broken into multiple parts to be displayed on separate pages. pixiedust will mimic this behavior for other output types.

Usage

sprinkle_longtable(x, longtable = getOption("pixie_longtable", FALSE), ...)

# S3 method for default sprinkle_longtable(x, longtable = getOption("pixie_longtable", FALSE), ...)

# S3 method for dust_list sprinkle_longtable(x, longtable = getOption("pixie_longtable", FALSE), ...)

Arguments

x

An object of class dust

longtable

Either a logical(1) or an numeric(1) integer-like value. See Details.

...

Additional arguments to pass to other methods. Currently ignored.

Functional Requirements

  1. Change the longtable attribute of the dust object.

  2. Cast an error if x is not a dust object.

  3. Cast an error if longtable is logical and has length not equal to 1.

  4. when longtable is not logical, cast an error if it is not-integerish and has length not equal to 1.

Details

When longtable = TRUE, LaTeX tables will be divided according to the LaTeX document settings. In other table outputs, the default is to use 25 rows per table.

When longtable is an integer (or integer-like) value, the table is divided into that many rows per section. This applies to all output.

See Also

dust, sprinkle