在标题幻灯片中添加徽标

时间:2018-04-16 20:42:35

标签: xaringan

如何正确地将标识添加到标题幻灯片的顶部?

经过一些试验和错误后,我想出了我添加到css文件中的内容。

.title-slide.remark-slide-content:before{
  position: absolute;
  content:url(logo.svg);
  height:60px;
}

enter image description here

这似乎适用于一个徽标,它位于右上角。我想在左上角添加另一个徽标。有更好的方法吗?

1 个答案:

答案 0 :(得分:1)

一种方法是使用带有一些div的for (i in 1:nrow(dt)){ check = dt[i,] for (j in 1:nrow(dt2)){ check2 = dt2[j,] if(check$refanimal == check2$animal & check$studyday <= check2$lastday){ dt$tmp == 1 } else { dt$tmp == "NA" } 创建自定义标题幻灯片。

seal: false

CSS

---
title: "Presentation Ninja"
subtitle: "⚔<br/>with xaringan"
author: "Yihui Xie"
date: "2016/12/12"
output:
  xaringan::moon_reader:
    lib_dir: libs
    nature:
      highlightStyle: github
      highlightLines: true 
      countIncrementalSlides: false
    seal: false
---

<div class="my-logo-left"></div>

<div class="my-logo-right"></div> 

# hello

---