由于标题幻灯片底部的图片,我想:
- 移动所有
title
,subtitle
并author
从它们的中心位置向上移动。 - 仅删除
Rlogo
标题幻灯片中的 (真的不知道该怎么做)。我现在只能删除幻灯片编号,使用.title-slide .remark-slide-number { display: none; }
.
任何建议表示赞赏!谢谢!
这是我的可重现示例:
调整.css 文件
/* for logo and slide number in the footer */
.remark-slide-content:after {
content: "";
position: absolute;
bottom: 15px;
right: 8px;
height: 40px;
width: 120px;
background-repeat: no-repeat;
background-size: contain;
background-image: url("Rlogo.png");
}
/* for background image in title slide */
.title-slide {
background-image: url("slideMasterSample.png");
background-size: cover;
}
.title-slide h1 {
color: #F7F8FA;
margin-top: -170px;
}
.title-slide h2, .title-slide h3 {
color: #e7e8e2;
line-height: 1.0em;
margin-top: -75px;
}
.title-slide .remark-slide-number {
display: none;
}
第一次尝试:在wiki中提到的文件中margin-top
修改tweaks.css
xaringan
---
title: "Presentation Ninja"
subtitle: "xaringan"
author: "Author"
output:
xaringan::moon_reader:
lib_dir: libs
css: ["default", "tweaks.css"]
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
结果 1:
第二次尝试:添加<br>
到title
手动将其向上推,但随后subtitle
也author
被向下推。添加<br>
并subtitle
没有author
帮助。
---
title: "Presentation Ninja<br><br><br><br><br><br>"
subtitle: "xaringan"
author: "Author"
output:
xaringan::moon_reader:
lib_dir: libs
css: ["default", "tweaks.css"]
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
结果 2:
使用的照片