blob: 02e40325b82c7eba7f38419b52951ba9d0383b28 [file] [log] [blame]
Hao Zhu94956582017-02-21 18:18:29 -05001## ----through_pandoc------------------------------------------------------
Hao Zhue10cfd32017-02-21 16:41:14 -05002library(knitr)
3library(kableExtra)
4dt <- mtcars[1:5, 1:2]
5colnames(dt)[1] <- c("mpg[note]")
6rownames(dt)[2] <- c("Mazda RX4 Wag[note]")
7dt[3, 2] <- paste0(dt[3, 2], "[note]")
8
9kable(dt) %>%
10 add_footnote(c("footnote 1", "footnote 2", "footnote 3"))
Hao Zhue10cfd32017-02-21 16:41:14 -050011
Hao Zhu94956582017-02-21 18:18:29 -050012## ----through_html--------------------------------------------------------
Hao Zhue10cfd32017-02-21 16:41:14 -050013kable(dt, format = "html") %>%
14 add_footnote(c("footnote 1", "footnote 2", "footnote 3"))
Hao Zhue10cfd32017-02-21 16:41:14 -050015
Hao Zhu94956582017-02-21 18:18:29 -050016## ----through_html_bootstrap----------------------------------------------
Hao Zhue10cfd32017-02-21 16:41:14 -050017kable(dt, format = "html", table.attr = htmlTable_styling()) %>%
18 add_footnote(c("footnote 1", "footnote 2", "footnote 3"))
Hao Zhue10cfd32017-02-21 16:41:14 -050019
Hao Zhu94956582017-02-21 18:18:29 -050020## ----through_latex_longtable---------------------------------------------
Hao Zhue10cfd32017-02-21 16:41:14 -050021kable(dt, format = "html",
22 table.attr = htmlTable_styling(c("striped", "bordered"),
23 full_width = F)) %>%
24 add_footnote(c("footnote 1", "footnote 2", "footnote 3"))
Hao Zhu94956582017-02-21 18:18:29 -050025