2024-05-17 14:23:05 +00:00
|
|
|
#import "00-templates/template.typ": *
|
|
|
|
|
|
|
|
#show: doc => slide_template(
|
|
|
|
title: [Title],
|
|
|
|
subtitle: [Subtitle],
|
|
|
|
authors: [Author A, Author B],
|
2024-06-19 08:29:39 +00:00
|
|
|
date: datetime.today(),
|
2024-05-18 12:22:59 +00:00
|
|
|
duration: 10, // time in minutes for presentation or counter timer if no field is given
|
2024-05-17 14:23:05 +00:00
|
|
|
doc,
|
|
|
|
)
|
|
|
|
|
|
|
|
#slide(
|
|
|
|
title: [First slide title]
|
|
|
|
)[
|
|
|
|
#lorem(20)
|
2024-05-18 12:22:59 +00:00
|
|
|
|
|
|
|
#pdfpc.speaker-note("This is a note that only the speaker will see.")
|
2024-05-17 14:23:05 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
#focus-slide(
|
|
|
|
foreground: white,
|
|
|
|
background: rgb("#ea366a")
|
|
|
|
)[
|
|
|
|
|
|
|
|
_Focus!_
|
|
|
|
|
|
|
|
This is very important.
|
|
|
|
]
|
|
|
|
|
|
|
|
#new-section-slide("Let's start a new section!")
|
|
|
|
|
|
|
|
#slide(
|
|
|
|
title: [Dynamic slide]
|
|
|
|
)[
|
|
|
|
Did you know that...
|
|
|
|
|
|
|
|
#pause
|
|
|
|
...you can see the current section at the top of the slide?
|
2024-05-18 12:22:59 +00:00
|
|
|
|
|
|
|
#pdfpc.speaker-note(
|
|
|
|
```md
|
|
|
|
# My notes
|
|
|
|
Did you know that pdfpc supports Markdown notes? _So cool!_
|
|
|
|
```
|
|
|
|
)
|
2024-05-17 14:23:05 +00:00
|
|
|
]
|