-
Notifications
You must be signed in to change notification settings - Fork 44
/
template.qmd
84 lines (58 loc) · 2.17 KB
/
template.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
title: A title
subtitle: A subtitle
format: clean-revealjs
html-math-method:
method: mathjax
url: "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
author:
- name: Your Name
orcid: 0000-0000-0000-0000
email: [email protected]
affiliations: Your Institution
date: last-modified
---
## Example slide
### This is a subtitle
Here we have some text that may run over several lines of the slide frame,
depending on how long it is.
- first item
- A sub item
Next, we'll brief review some theme-specific components.
- Note that _all_ of the standard Reveal.js
[features](https://quarto.org/docs/presentations/revealjs/)
can be used with this theme, even if we don't highlight them here.
## Additional theme classes
### Some extra things you can do with the clean theme
Special classes for emphasis
- `.alert` class for default emphasis, e.g. [important note]{.alert}.
- `.fg` class for custom colour, e.g. [important note]{.fg style="--col: #e64173"}.
- `.bg` class for custom background, e.g. [important note]{.bg style="--col: #e64173"}.
Cross-references
- `.button` class provides a Beamer-like button, e.g.
[[Summary]{.button}](#sec-summary)
## Want more?
### See our longer demo slides
We've deliberarely kept this template lean, to get you up and running as fast as
possible.
We provide a separate
[demo template](https://github.com/grantmcdermott/quarto-revealjs-clean-demo),
with more examples for integrating code, tables, figures, etc.
- See the live demo slides
[here](https://grantmcdermott.com/quarto-revealjs-clean-demo/template.html).
## Summary {#sec-summary}
### A minimalist and elegant presentation theme
The Quarto reveal.js clean theme aims to be a minimalist and elegant presention
theme. Here are some options to get you started:
Add the theme to an existing project.
```{.bash}
quarto install extension grantmcdermott/quarto-revealjs-clean
```
... or, create a new project using this slide deck as a lean template.
```{.bash}
quarto use template grantmcdermott/quarto-revealjs-clean
```
... or, create a new project using the demo slide deck as a full template.
```{.bash}
quarto use template grantmcdermott/quarto-revealjs-clean-demo
```