42 lines
736 B
Typst
42 lines
736 B
Typst
#import "@preview/polylux:0.3.1": *
|
|
#import themes.metropolis: *
|
|
|
|
#show: metropolis-theme.with(
|
|
footer: [Custom footer]
|
|
)
|
|
|
|
#set text(font: "Fira Sans", weight: "light", size: 20pt)
|
|
#show math.equation: set text(font: "Fira Math")
|
|
#set strong(delta: 100)
|
|
#set par(justify: true)
|
|
|
|
#title-slide(
|
|
author: [Authors],
|
|
title: "Title",
|
|
subtitle: "Subtitle",
|
|
date: "Date",
|
|
extra: "Extra"
|
|
)
|
|
|
|
#slide(title: "Table of contents")[
|
|
#metropolis-outline
|
|
]
|
|
|
|
#slide(title: "Slide title")[
|
|
A slide with some maths:
|
|
$ x_(n+1) = (x_n + a/x_n) / 2 $
|
|
|
|
#lorem(200)
|
|
]
|
|
|
|
#new-section-slide("First section")
|
|
|
|
#slide[
|
|
A slide without a title but with #alert[important] infos
|
|
]
|
|
|
|
#new-section-slide([Second section])
|
|
|
|
#focus-slide[
|
|
Wake up!
|
|
]
|