2015-12-24 86 views
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") 
    ``` 

回答

3

啊哈!自定義CSS樣式表會有訣竅。

caption { 
     color: red; 
     font-weight: bold; 
     font-size: 1.0em; 
    } 
相關問題