Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/document-reveal-content.yml
12921 views
1
- name: logo
2
tags:
3
formats: [revealjs]
4
schema:
5
ref: logo-light-dark-specifier
6
description: "Logo image (placed in bottom right corner of slides)"
7
8
- name: footer
9
tags:
10
formats: [revealjs]
11
schema: string
12
description:
13
short: "Footer to include on all slides"
14
long: |
15
Footer to include on all slides. Can also be set per-slide by including a
16
div with class `.footer` on the slide.
17
18
- name: scrollable
19
tags:
20
formats: [revealjs]
21
schema: boolean
22
default: false
23
description:
24
short: "Allow content that overflows slides vertically to scroll"
25
long: |
26
`true` to allow content that overflows slides vertically to scroll. This can also
27
be set per-slide by including the `.scrollable` class on the slide title.
28
29
- name: smaller
30
tags:
31
formats: [revealjs]
32
schema: boolean
33
default: false
34
description:
35
short: "Use a smaller default font for slide content"
36
long: |
37
`true` to use a smaller default font for slide content. This can also
38
be set per-slide by including the `.smaller` class on the slide title.
39
40
- name: output-location
41
tags:
42
formats: [revealjs]
43
schema:
44
enum: [default, fragment, slide, column, column-fragment]
45
description:
46
short: Location of output relative to the code that generated it (`default`, `fragment`, `slide`, `column`, or `column-location`)
47
long: |
48
Location of output relative to the code that generated it. The possible values are as follows:
49
50
- `default`: Normal flow of the slide after the code
51
- `fragment`: In a fragment (not visible until you advance)
52
- `slide`: On a new slide after the curent one
53
- `column`: In an adjacent column
54
- `column-fragment`: In an adjacent column (not visible until you advance)
55
56
Note that this option is supported only for the `revealjs` format.
57
58