typst-kfu-slides-template/1.0.1/template/slides.typ
Gaspard Jankowiak 207933c534 tweak theme
2025-12-13 22:49:59 +01:00

75 lines
1.3 KiB
Typst

#import "@preview/definitely-not-kfu-slides:1.0.1": *
#show: definitely-not-kfu-theme.with(
aspect-ratio: "4-3",
slide-alignment: top,
progress-bar: true,
institute: [uni-graz.at],
logo: [#unigrazgraz-logo],
config-info(
title: [Is that an interesting title?],
subtitle: [Yes, for a subtitle.],
authors: ([Best Author], [Good Author], [Ugly Author]),
extra: [1st january 2026],
footer: [Let's rock],
download-qr: "",
),
config-common(
handout: false,
),
config-colors(
primary: rgb("FED501"),
),
)
#set text(font:"Fira Sans")
#show math.equation: set text(font:"Fira Math")
#title-slide()
#slide(title: [First Slide])[
#quote-block[
Let there be light!
]
+ This is
+ a numbered
+ list.
Below is an equation:
$
e^(i pi) + 1 = 0 "and" integral_0^1 sin(x) dif x = "something"
$
#note("This will show on pdfpc speaker notes ;)")
]
#slide(title: [Code example])[
The following code block
```typst
#color-block(title: [Advantages])[
- A
- B
- C
]
```
produces this:
#color-block(title: [Advantages])[
- A
- B
- C
]
Let's cite @zola-1898.
Some _emph_ text, and some *strong* text.
]
#slide(title: [Bibliography])[
#set bibliography(title:"References", style: "alphanumeric")
#bibliography("bibliography.bib")
]