2

我正在使用新的 Rmarkdown 文件在 RStudio 中进行快速演示,并将其设置为使用ioslides. 这是我所拥有的:

---
title: "SX MWE Presentation"
author: "John Doe"
date: "Today"
output:
  ioslides_presentation:
    smaller: yes
    widescreen: yes
    transition: "faster" 
---

## Plan

Here's the plan: I'm going to give one speech today and another next Monday. 

## Today's Speech 

## Today I'll be talking about A B and C. 

## Next Monday

## Next Monday I'll be talking about X Y and Z. 

这是我的问题:我想让幻灯片标题文本## Today's Speech## Next Monday幻灯片水平和垂直居中。我怎么做?您会立即看到这些只是没有内容的幻灯片,只是一个标题,但这是故意的:我只想要几张“设置”幻灯片来锚定我们所在的位置。

我的怀疑是,为了使幻灯片标题居中,我需要某种自定义 css 文件,但我一直无法找到我认为我正在寻找的代码。(当然,我已经在 ioslides 文档中寻找答案,但没有找到。)

4

1 回答 1

3

您可以尝试以下方法:

在您的 YAML 标头之后,添加以下行:

<style type="text/css">

h2 {
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
}
</style>

这意味着您覆盖了 header 2 CSS 样式。您的标题现在出现在屏幕中间,您可以使用 css 完全修改标题样式,例如更改颜色、字体大小...

于 2020-04-21T11:57:20.477 回答