R/Rkable_footnote_marker.R

Defines functions Rkable_footnote_marker

Rkable_footnote_marker <- function(x, marker_type = "number", 
    format = Rkable_format(), double_escape = FALSE) {
    library(knitr);library(kableExtra)
    marker_fun <- switch(marker_type, 
        number = footnote_marker_number
        ,alphabet = footnote_marker_alphabet
        ,symbol = footnote_marker_symbol
    )
    return(marker_fun(x, format = format, double_escape = double_escape))
}
EccRiley/Riley documentation built on Feb. 15, 2024, 9:29 a.m.