在 revealjs 演示文稿上自定义标题页

Customize title page on revealjs presentation

我正在使用 R Markdown 和 revealjs 准备演示文稿,我想自定义标题页。特别是,我想:

  1. 减小作者姓名的字体大小。
  2. 从作者姓名中删除粗体。
  3. 在标题和作者姓名之间增加space。

到目前为止,我只能在标题中想出一些 Html 技巧,效果并不令人满意。

--- 
title: <font size=8>My Really, Truly, Indeed Very Long Title</font>
author: </b><br><br><font size=5>My Longish Name</font>
output: revealjs::revealjs_presentation
---

我想我需要自定义 CSS,但我不知道要更改哪些参数。我不是经验丰富的 CSS 用户。也对比上述更成功的 Html 黑客感到满意。

这是我能做的最好的,你可以在 Rmarkdown 中添加内联 CSS。 font-weight: normal; 应该从子标题中删除粗体,但我认为它呈现不正确,line-height: 90px; 应该有助于控制 headers.[=14 之间的填充=]

--- 
title: My Really, Truly, Indeed Very Long Title
author: My Longish Name
output: revealjs::revealjs_presentation
---

```{css}
h1.title {
  font-size: 8px;
  line-height: 90px;
}

h2.author {
  font-weight: normal;
  line-height: 90px;
}
``` 

只是已更改的 Revealjs 输出示例