gpt4 book ai didi

r - 如何在 rmarkdown pdf 中插入可变图像文件

转载 作者:行者123 更新时间:2023-12-04 21:32:03 25 4
gpt4 key购买 nike

问题很简单 - 如何将变量文件名插入到 rmarkdown PDF 中?我想做这个:

---
FNL = "image.png"
---

![Some Text](params$FNL)

只有在调用 rmarkdown::render 时我需要传入 FNL 的值

目的是为图像提供唯一 ID,以便用户获得为其 session 标记的图像。

任何人都可以帮助解决这个问题?

最佳答案

只需使用内联 R 评估(适用于 HTML 和 PDF 输出):

---
title: "Example"
author: "Martin"
date: "March, 11 2017"
output: html_document
params:
img: NULL
---

`r sprintf("![A good boy](%s)", params$img)`

然后您可以通过调用使用图像文件渲染文档
rmarkdown::render("MyDocument.Rmd", params = list(img = "unnamed.png")) .

enter image description here

关于r - 如何在 rmarkdown pdf 中插入可变图像文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49203660/

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