## Latex utprint
# tabell_forutsetning_neste_ar %>%
# mutate_all(linebreak) %>%
# kable(format = "latex",
# booktabs = T,
# escape = F,
# col.names = linebreak( names(tabell_forutsetning_neste_ar) ), align = c("l", rep("r", times = 5) ) ) %>%
# kable_styling( position = "left",
# latex_options = c("HOLD_position", "striped", "scale_down"), stripe_index = c(1,3,5,7), font_size = 6 )
#
latex_tabell <- function( tabell, size, position = "left" ) {
tabell_strip <- 1:nrow(tabell)
tabell_strip <- tabell_strip[tabell_strip %% 2 == 1]
knitr::kable( x = tabell,
booktabs = T, escape = F, digits = 0,
format = "latex",
col.names = linebreak( names(tabell) ),
align = rep("r", times = ncol(tabell) )
) %>%
kableExtra::kable_styling( latex_options = c("HOLD_position","striped"), stripe_index = tabell_strip , font_size = size, position = position )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.