In fact, you can include LaTeX code directly in the Rmd file to change the settings.
, , "" "", \figurename \contentsname. , \renewcommand :
\renewcommand{\figurename}{Fig.}
\renewcommand{\contentsname}{Table of Contents}
" " ( ), LaTeX article, book report:
\abstractname [only article, report]:\appendixname:\bibname [only book, report]:\chaptername [only book, report]: Chapter\contentsname:\figurename:\indexname:\listfigurename:\listtablename:\partname:\refname [only article]:\tablename:
MWE :
---
output:
pdf_document: default
---
\renewcommand{\figurename}{YOUR LABEL}
\renewcommand{\tablename}{TABLE LABEL}
```{r Table, echo =FALSE}
knitr::kable(iris[1:5,], caption = "A table")
```
```{r pressure, echo=FALSE, fig.cap="Test Caption"}
plot(pressure)
```
bookdown RMarkdown knitr. , , .