This commit is contained in:
Gaspard Jankowiak 2025-12-14 20:23:50 +01:00
commit b4a76500b6
20 changed files with 23 additions and 1064 deletions

12
template/bibliography.bib Normal file
View file

@ -0,0 +1,12 @@
// You can use LaTeX's bibliography format per default
// or
// Typst's Hayagriva:
// https://github.com/typst/hayagriva/blob/main/docs/file-format.md
@article {zola-1898,
AUTHOR = {Zola, Émile},
TITLE = {J'accuse},
JOURNAL = {L'Aurore},
VOLUME = {87},
YEAR = {1898},
}

75
template/slides.typ Normal file
View file

@ -0,0 +1,75 @@
#import "@local/definitely-not-kfu-slides:1.0.1": *
#show: definitely-not-kfu-theme.with(
aspect-ratio: "16-9",
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: "springer-mathphys")
#bibliography("bibliography.bib")
]