Compare commits
3 Commits
81ba87ef40
...
d9b32d86f3
Author | SHA1 | Date | |
---|---|---|---|
d9b32d86f3 | |||
6732c64d5f | |||
562f5b52f1 |
@ -5,12 +5,25 @@
|
|||||||
title: [Title],
|
title: [Title],
|
||||||
subtitle: none,
|
subtitle: none,
|
||||||
authors: [],
|
authors: [],
|
||||||
date: none,
|
date: datetime.today(),
|
||||||
duration: none,
|
duration: none,
|
||||||
|
fade: true,
|
||||||
|
handout: false,
|
||||||
doc,
|
doc,
|
||||||
) = {
|
) = {
|
||||||
|
|
||||||
set text(font: "Inria Sans")
|
//set text(font: "Inria Sans")
|
||||||
|
|
||||||
|
let date-text = if date.day() == 1 {
|
||||||
|
date.display("[weekday], [day padding:none]st of [month repr:long] [year]")
|
||||||
|
} else if date.day() == 2 {
|
||||||
|
date.display("[weekday], [day padding:none]nd of [month repr:long] [year]")
|
||||||
|
} else if date.day() == 3 {
|
||||||
|
date.display("[weekday], [day padding:none]rd of [month repr:long] [year]")
|
||||||
|
} else {
|
||||||
|
date.display("[weekday], [day padding:none]th of [month repr:long] [year]")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
show: clean-theme.with(
|
show: clean-theme.with(
|
||||||
//aspect-ratio: "4-3",
|
//aspect-ratio: "4-3",
|
||||||
@ -20,26 +33,36 @@
|
|||||||
color: rgb("#ea366a"),
|
color: rgb("#ea366a"),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if handout {
|
||||||
|
enable-handout-mode(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
let transition = if fade {
|
||||||
|
"fade"
|
||||||
|
} else {
|
||||||
|
"none"
|
||||||
|
}
|
||||||
|
|
||||||
if duration != none{
|
if duration != none{
|
||||||
pdfpc.config(
|
pdfpc.config(
|
||||||
duration-minutes: duration,
|
duration-minutes: duration,
|
||||||
default-transition: (
|
default-transition: (
|
||||||
type: "fade",
|
type: transition,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
pdfpc.config(
|
pdfpc.config(
|
||||||
default-transition: (
|
default-transition: (
|
||||||
type: "fade",
|
type: transition,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
title-slide(
|
title-slide(
|
||||||
title: [#title],
|
title: [#title],
|
||||||
subtitle: [#subtitle],
|
subtitle: [#subtitle],
|
||||||
authors: ([#authors]),
|
authors: ([#authors]),
|
||||||
date: [#date],
|
date: [#date-text],
|
||||||
)
|
)
|
||||||
|
|
||||||
doc
|
doc
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
title: [Title],
|
title: [Title],
|
||||||
subtitle: [Subtitle],
|
subtitle: [Subtitle],
|
||||||
authors: [Author A, Author B],
|
authors: [Author A, Author B],
|
||||||
date: datetime.today().display("[day].[month].[year]"),
|
date: datetime.today(),
|
||||||
duration: 10, // time in minutes for presentation or counter timer if no field is given
|
duration: 10, // time in minutes for presentation or counter timer if no field is given
|
||||||
doc,
|
doc,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user