huxtable (version 1.2.0)

caption_pos: Caption position

Description

Functions to get or set the table-level caption position property of a huxtable.

Usage

caption_pos(ht)
caption_pos(ht) <- value
set_caption_pos(ht, value)

Arguments

ht

A huxtable.

value

A length-one character vector, one of 'top', 'bottom', 'topleft', 'topcenter', 'topright', 'bottomleft', 'bottomcenter', 'bottomright', or NA for the default.

Value

For caption_pos, the caption_pos attribute. For set_caption_pos, the ht object.

Details

If caption_pos is 'top' or 'bottom', then the horizontal position ('left', 'center' or 'right') will be determined by the huxtable's position.

See Also

caption

Examples

Run this code
# NOT RUN {
ht <- huxtable(a = 1:3, b = 1:3)
caption_pos(ht) <-  'bottom'
caption_pos(ht)

# }

Run the code above in your browser using DataLab