Skip to content

A template for creating slides in Typst

License

Notifications You must be signed in to change notification settings

bcluzel/typst-slides

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Slides in Typst

This is a template for creating slides in Typst.

Book badge GitHub

Quickstart

#import "slides.typ": *

#show: slides.with(
    authors: "Names of author(s)",
    short-authors: "Shorter author for slide footer",
    title: "Title of the presentation",
    subtitle: "Subtitle of the presentation",
    short-title: "Shorter title for slide footer",
    date: "March 2023",
)

#new-section("My section name")

#slide(title: "A boring static slide")[
  Some boring static text.
]

#slide[
  A fancy dynamic slide without a title.
  More text.
  #only(2)[This appears later!]
]

As you can see, creating slides is as simple as using the #slide function. (You do not need to care about stuff like #new-section or #only in the beginning.)

This code produces these PDF pages: title slide

That's all to get you started! For more details, visit the book!

There are also different themes to choose from! If you like, you can even create your own.

⚠ This template is in active development. While I try to make sure that the main-branch always is in a usable state, there are no compatibility guarantees!

About

A template for creating slides in Typst

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published