我正在制作RMarkdown pdf文档,并试图使用RepoRters包的FlexTable对象转换html格式的表格,并希望将其转换为latex,以便我可以将表格输出为pdf。
有办法做到这一点吗?
谢谢!拉斐尔
这是一个在我的机器上工作的例子。确保在YAML内容中包含header-includes
块。
---
title: "lazyWeave Example"
output: pdf_document
header-includes:
- usepackage{xcolor}
- usepackage{graphicx}
- usepackage{colortbl}
---
After running `install.packages("lazyWeave")` the following should produce the desired table.
```{r}
library(lazyWeave)
options(lazyReportFormat = "latex")
```
```{r, results='asis'}
lazy.matrix(mtcars[1:10, ],
rcol = c(TRUE, FALSE),
usecol = "lightgray")
```