Skip to contents

Apply theme APA (the stylistic style of the American Psychological Association) to a flextable

Usage

flextable_theme_rpact(
  x,
  ...,
  digits = 2,
  halign = "center",
  fontname = "Arial"
)

Arguments

x

a flextable object

...

unused

digits

number of digits to display

halign

horizontal alignment

fontname

font name

See also

flextable::theme_zebra(), flextable::theme_booktabs(), flextable::theme_apa()

Examples

if (FALSE) { # \dontrun{
ft <- flextable(head(mtcars * 22.22))
ft <- theme_rpact(ft)
ft
} # }