gpt4 book ai didi

r - 如何在 Rmarkdown 中的表格中添加精美的图标?

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

我正在寻找一种简洁的方法来将包含超棒图标的超链接添加到Rmarkdown表(kable)中——以便合并到htmlbookdown页面中。

在文档的其他部分,我使用了 icon 包,使用标准 Markdown 语法呈现超链接的 fontawesome 图标(在表格之外),例如:

`r icon::fa("file-pdf", size = 5)](https://www.google.com/){target="_blank"}`

enter image description here

但是当我尝试将其合并为 kable 的一部分时,这种方法不起作用。

```{r}

library(icon)
library(knitr)
library(tidyverse)

## note this code throws the following error: Error in
## as.data.frame.default(x[[i]], optional = TRUE, stringsAsFactors =
## stringsAsFactors) : cannot coerce class "c("knit_asis",
## "knit_icon")" to a data.frame

link_location <- "www.google.com"

data_test_1 <- data.frame(
file = c('Version 1', 'Version 2', 'Version 3'),
last_updated = Sys.Date(),
pdf_logo = icon::fa("file-pdf")) %>%
mutate(pdf_logo = cell_spec(pdf_logo,
link = link_location)) %>%
kable("html", escape = F, align = "c")
data_test_1
```

到目前为止,我已经想出了一个解决方法,包括从 fontawesome 网站下载 .svg 文件并将其添加为图像。它可以工作......有点,但我更希望能够更改图标的大小并使其更容易复制。

这是我当前解决方法的代码。

```{r fontawesome_table ='asis'}

library(tidyverse)
library(kableExtra)

## download svg from location manually
https://fontawesome.com/icons/r-project?style=brands

data_test_2 <- data.frame(
file = c('Version 1', 'Version 2', 'Version 3'),
last_updated = Sys.Date(),
R_logo = "![](r-project-brands.svg)") %>%
mutate(R_logo = cell_spec(R_logo, link = "https://cran.r-
project.org/")) %>%
kable("html", escape = F, align = "c")
data_test_2
```

产生这个输出...

Output produced by chunk above

有谁知道如何调整表格中图标的大小,或者从另一个包/css 调用图标来创建更整洁的解决方案?

最佳答案

这是一种使用 fontawesome 包的方法。我还必须使用自定义链接构建功能:

```{r, echo = F, message=F, warning=F}
library(fontawesome)
library(knitr)
library(tidyverse)
library(kableExtra)
## note this code throws the following error: Error in
## as.data.frame.default(x[[i]], optional = TRUE, stringsAsFactors =
## stringsAsFactors) : cannot coerce class "c("knit_asis",
## "knit_icon")" to a data.frame

link_location <- "www.google.com"

addLink <- function() {
paste0("<a href=\"", link_location, "\">", as.character(fa("file-pdf")), "</a>")
}

data_test_1 <- data.frame(file = c('Version 1', 'Version 2', 'Version 3'),
last_updated = Sys.Date(),
pdf_logo = addLink())

kable(data_test_1, escape = F, align = "c")
```

enter image description here

关于r - 如何在 Rmarkdown 中的表格中添加精美的图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53549662/

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