gpt4 book ai didi

r - 通过 R 创建可填充的 PDF 文本框

转载 作者:行者123 更新时间:2023-12-04 11:22:13 24 4
gpt4 key购买 nike

我正在使用 R Markdown 中的测试文件,通过简单地创建一个新的 Markdown 文件在 RStudio 中生成。它显示如下:

---
title: "Fillable Textbox?"
author: "The Need To Edit"
date: "Wednesday, October 21, 2015"
output: pdf_document
---

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

```{r}
summary(cars)
```

You can also embed plots, for example:

```{r, echo=FALSE}
plot(cars)
```

Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.

我的问题:

Is it possible to create a fillable textbox within the PDF form?



我正在努力自动化我的一些工作流程,但是在该自动化中,最终用户可能需要添加评论。我认为可填充的文本框是维护标准文档格式并给我的用户一些自由的好方法。除了添加可填充的文本框之外,我已经找到了几乎可以做所有事情的方法,也许我正在搜索错误的表达式?

最佳答案

hyperref 包(自动加载)允许可填写的字段。这只是使用它的特定命令的问题,您可以找到here .试试这个代码(点击右侧的 Name )。

---
title: "Fillable Textbox?"
author: "The Need To Edit"
date: "Wednesday, October 21, 2015"
output: pdf_document
---

Since Rmarkdown uses knitr and it loads automatically hyperref I think hat this should work.

In fact it is just a matter of use some \LaTeX\ commands of the hyperref package.

```{r, echo=FALSE}
plot(cars)
```


\begin{Form}
\TextField{Name}
\end{Form}

当然,这个 PDF 可以作为 PDF 填写,然后它将无法在 RStudio(如果您使用它)PDF 查看器中工作。

关于r - 通过 R 创建可填充的 PDF 文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33269484/

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