作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我能够弄清楚如何使用“\includepdf”在我的 RMarkdown 输出中包含多页 PDF 文档,但我需要能够根据数据中的条件更改不同 PDF 的路径。我希望能够根据我事先在 block 中设置的对象(例如“测试”)调用 PDF 文件路径。有任何想法吗?谢谢!
---
title: "Personnel Reports"
output:
pdf_document
header-includes:
- \usepackage{pdfpages}
---
This works:
\includepdf[pages=-,pagecommand={}]{Person1_report.pdf}
```{r global_options, include=FALSE}
test <- "Person2_report.pdf"
```'
This doesn't work:
\includepdf[pages=-,pagecommand={}]{test}
最佳答案
---
title: "Personnel Reports"
output:
pdf_document:
keep_tex: true
header-includes:
- \usepackage{pdfpages}
---
```{r global_options, include=FALSE}
test <- "example-image-duck.pdf"
```
\includepdf[pages=-,pagecommand={}]{`r test`}
关于r - 如何在具有动态路径的 RMarkdown 中包含多页 PDF?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72721428/
我是一名优秀的程序员,十分优秀!