blob: 336850165ed2210444d0b57fa2cc44757c9b7246 [file] [log] [blame]
Hao Zhubacd2f32017-10-11 14:06:36 -04001---
2title: "cell_formatter_pdf"
3author: "Hao"
4date: "10/11/2017"
5output: pdf_document
6---
7
8```{r, include=F}
9library(knitr)
10library(kableExtra)
11library(dplyr)
12```
13
14```{r}
Hao Zhu457acb42017-10-14 17:37:02 -040015iris[1:10, 1:4] %>%
16 mutate_all(function(x){
17 cell_spec(x, "latex",
18 background = spec_color(x),
19 font_size = spec_font_size(x),
20 color = "white", bold = T)
21 }) %>%
22 kable("latex", escape = F, booktabs = T, linesep = "", align = "c")
Hao Zhubacd2f32017-10-11 14:06:36 -040023```