作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找一种简洁的方法来将包含超棒图标的超链接添加到Rmarkdown
表(kable)中——以便合并到htmlbookdown
页面中。
在文档的其他部分,我使用了 icon
包,使用标准 Markdown 语法呈现超链接的 fontawesome 图标(在表格之外),例如:
`r icon::fa("file-pdf", size = 5)](https://www.google.com/){target="_blank"}`
但是当我尝试将其合并为 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
```
产生这个输出...
有谁知道如何调整表格中图标的大小,或者从另一个包/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")
```
关于r - 如何在 Rmarkdown 中的表格中添加精美的图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53549662/
我是一名优秀的程序员,十分优秀!