使用rosmark使用ioslides_presentation格式,如果我在标题后包含css-class
## MyHeader {.smaller}
这实际上会更改<article class='smaller'></article>
元素,而不是<slide></slide>
元素。
我想添加一个transition / segue幻灯片,就像在网络上的ioslides-examples中一样,但我需要像这样添加类:
<slide class='segue dark nobackground'>
如何从.Rmd文件中执行此操作?
答案 0 :(得分:2)
您可以使用单个#制作segue幻灯片,例如
---
title: "Habits"
author: John Doe
date: March 22, 2005
output: ioslides_presentation
---
# In the morning
## Getting up
- Turn off alarm
- Get out of bed
或者您可以使用一点css来自定义segue幻灯片,例如:
.mySegue {
font-size: 105px;
line-height: 65px;
letter-spacing: -2px;
color: yellow;
padding: 60px 120px;
}
然后像这样的幻灯片:
## {.mySegue}
My Segue Text