gpt4 book ai didi

r - 如何在具有动态路径的 RMarkdown 中包含多页 PDF?

转载 作者:行者123 更新时间:2023-12-05 05:39:20 25 4
gpt4 key购买 nike

我能够弄清楚如何使用“\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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com