2
1

Initial commit

This commit is contained in:
2024-05-17 16:23:05 +02:00
commit e0b90f4d17
4 changed files with 68 additions and 0 deletions

36
slides.typ Normal file
View File

@@ -0,0 +1,36 @@
#import "00-templates/template.typ": *
#show: doc => slide_template(
title: [Title],
subtitle: [Subtitle],
authors: [Author A, Author B],
date: datetime.today().display("[day].[month].[year]"),
doc,
)
#slide(
title: [First slide title]
)[
#lorem(20)
]
#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?
]