1

我正在处理 RMarkdown pdf 文档,并尝试使用 RepoRters 包的 FlexTable 对象转换以 html 格式格式化的表格,并希望将其转换为乳胶,以便我可以将表格输出为 pdf。

有没有办法做到这一点?

谢谢!拉斐尔

4

1 回答 1

0

这是一个适用于我的机器的示例。请务必header-includes在 YAML 内容中包含该块。

---
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")
```
于 2015-09-15T23:00:12.130 回答