如何在 RStudio 的 ioslides 中为每张幻灯片添加徽标

How to add logo to each slide in ioslides in RStudio

我正在尝试使用 RStudio 向 ioslides 演示文稿中的 rmarkdown 中的每张幻灯片添加徽标。

我的代码如下:

---
title: " "
author: " "
date: " "
output:
  ioslides_presentation:
    widescreen: false
    logo: logo_wp.png
runtime: shiny
---

# Caption1

## Caption 2

徽标可以从 here!

下载

幻灯片 3 上没有徽标。runtime: shiny 是必需的,因为该演示文稿中有一个闪亮的应用程序。

根据 rstudio webpage 中的这句话,这应该有效,但实际上无效..

A 128x128 version of the logo graphic will be added to the title slide and an icon version of the logo will be included in the bottom-left footer of each slide

我正在使用 windows 7 并且我已将编码设置为 UTF-8。

您尝试过发布幻灯片吗?我在 Windows 8.1 上发现该图标没有出现在 RStudio 预览中,但是当我将它们发布到 shinyapps.io.

时它就在那里

如果您想强制图标显示在 RStudio 预览中,您可以使用:

---
title: " "
author: " "
date: " "
output:
  ioslides_presentation:
    widescreen: false
    logo: logo_wp.png
runtime: shiny
---

```{r, echo=FALSE}
logo<-"path_to_logo_wp.png"
```

# Caption1

## Caption 2
<IMG style="position:absolute;bottom:2.5%;left:5%;width:35px;"SRC="`r logo`">

注意:您必须在每张要显示徽标的内容幻灯片中包含最后一行代码。如果您选择发布幻灯片,此 "forced" 图标将放置在 YAML header.

中调用的 "native" 图标之上