Universe
Create project in app

Minimalistic typst slides (similar to LaTeX beamer)

#import "@preview/leonux:1.0.0": *

// Setup the format and enter personal information
#show: setup.with(
	ratio: "16-9",
	title: "Title of the presentation",
	subtitle: "Subtitle of the presentation",
	date: "April 9, 2025",
	author: "Name",
	institute: "Institute"
)

// Create titlepage

#titlepage()

// Create Table of contents

#content(title: "Content")

// Create a slide

#slide(title: "Name of the slide")[
	- Some content
	- Some citation @ref of Leonux #footnote("Leonux - minimalistic typst slides")
	// Create a block (e.g. for a definition)
	#my-block(title: "Definition: Law of large numbers")[
		$ forall epsilon > 0: lim_(n -> infinity) P(|r_n - p| <= epsilon) = 1 $
		Or in words: For large $n$ applies: $p approx r_n$.
	]
]

// Create bibliography

#references(title:"References")[
	#bibliography("bibliography.bib")
]