5
使用kable()呈現簡單的表格會生成什麼似乎是生成的html文件中表格標題的默認淺色字體顏色。有沒有辦法控制表(或圖)標題的字體顏色,大小等?使用kable的標題字體顏色
---
title: "test"
output:
html_document:
theme: cosmo
---
```{r}
library(knitr)
tab.1 = table(mtcars$cyl, mtcars$vs)
kable(tab.1, caption="Table 1: Caption Font Color")
```