54 lines
890 B
Plaintext
54 lines
890 B
Plaintext
#import "@preview/polylux:0.3.1": *
|
|
#import themes.clean: *
|
|
|
|
#let slide_template(
|
|
title: [Title],
|
|
subtitle: none,
|
|
authors: [],
|
|
date: none,
|
|
duration: none,
|
|
handout: false,
|
|
doc,
|
|
) = {
|
|
|
|
set text(font: "Inria Sans")
|
|
|
|
show: clean-theme.with(
|
|
//aspect-ratio: "4-3",
|
|
footer: [#authors #h(0.2cm)-#h(0.2cm) Bachelor thesis #datetime.today().display("[year]")],
|
|
short-title: [#title],
|
|
logo: image("./FR-DE_HEI_rvb.png"),
|
|
color: rgb("#ea366a"),
|
|
)
|
|
|
|
if handout {
|
|
enable-handout-mode(true)
|
|
}
|
|
|
|
if duration != none{
|
|
pdfpc.config(
|
|
duration-minutes: duration,
|
|
default-transition: (
|
|
type: "fade",
|
|
)
|
|
)
|
|
} else {
|
|
pdfpc.config(
|
|
default-transition: (
|
|
type: "fade",
|
|
)
|
|
)
|
|
}
|
|
|
|
title-slide(
|
|
title: [#title],
|
|
subtitle: [#subtitle],
|
|
authors: ([#authors]),
|
|
date: [#date],
|
|
)
|
|
|
|
doc
|
|
|
|
}
|
|
|