我无法理解如何在R-Markdown中向表格添加图形标题编号表格。我正在使用bookdown
,并且一直在尝试了解文档的2.5 tables部分。
它说,当您向kable
函数添加标题时,它将自动被标记为数字。但是,我只得到标签的“文本”部分而没有数字。
---
title: "test"
author: "x"
date: "February 20, 2019"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
```{r libraries, echo=FALSE}
library(tidyverse, warn.conflicts = T)
library(kableExtra)
library(bookdown)
```
```{r example, echo=T}
head(pressure) %>%
kable(caption = "Pressure",
booktabs = T) %>%
kable_styling(full_width = F)
```
非常感谢您对如何执行此操作的帮助。
答案 0 :(得分:1)
由于bookdown
标头,您没有使用rmarkdown::html_document()
,而是使用output
。您需要将标题更改为
---
title: "test"
author: "x"
date: "February 20, 2019"
output: bookdown::html_document2
---
以便在单个文件项目中使用bookdown
功能。对于实际的书籍,最好让bookdown
包为您设置框架,例如通过RStudio加载项。