diff --git a/slides.typ b/slides.typ index 7c6338c..91de594 100644 --- a/slides.typ +++ b/slides.typ @@ -49,10 +49,11 @@ ) ) +#set page(foreground: ghost-5(dx:-45%, dy: 43%)) #slide(new-sec: true, title: [Introduction], hide-title: true)[ Intro 1 - ] +#set page(foreground: []) #slide[ Intro 2 diff --git a/slides/imgs/ghosts/eye-1.png b/slides/imgs/ghosts/eye-1.png new file mode 100644 index 0000000..8ff9f82 Binary files /dev/null and b/slides/imgs/ghosts/eye-1.png differ diff --git a/slides/imgs/ghosts/eye-2.png b/slides/imgs/ghosts/eye-2.png new file mode 100644 index 0000000..8c555a3 Binary files /dev/null and b/slides/imgs/ghosts/eye-2.png differ diff --git a/slides/imgs/ghosts/eye-3.png b/slides/imgs/ghosts/eye-3.png new file mode 100644 index 0000000..8b74907 Binary files /dev/null and b/slides/imgs/ghosts/eye-3.png differ diff --git a/slides/imgs/ghosts/eye-4.png b/slides/imgs/ghosts/eye-4.png new file mode 100644 index 0000000..5c3cfcc Binary files /dev/null and b/slides/imgs/ghosts/eye-4.png differ diff --git a/slides/imgs/ghosts/ghost-1.png b/slides/imgs/ghosts/ghost-1.png new file mode 100644 index 0000000..f353979 Binary files /dev/null and b/slides/imgs/ghosts/ghost-1.png differ diff --git a/slides/imgs/ghosts/ghost-2.png b/slides/imgs/ghosts/ghost-2.png new file mode 100644 index 0000000..cb39b09 Binary files /dev/null and b/slides/imgs/ghosts/ghost-2.png differ diff --git a/slides/imgs/ghosts/ghost-3.png b/slides/imgs/ghosts/ghost-3.png new file mode 100644 index 0000000..95c4e48 Binary files /dev/null and b/slides/imgs/ghosts/ghost-3.png differ diff --git a/slides/imgs/ghosts/ghost-4.png b/slides/imgs/ghosts/ghost-4.png new file mode 100644 index 0000000..798019f Binary files /dev/null and b/slides/imgs/ghosts/ghost-4.png differ diff --git a/slides/imgs/ghosts/ghost-5.png b/slides/imgs/ghosts/ghost-5.png new file mode 100644 index 0000000..047806a Binary files /dev/null and b/slides/imgs/ghosts/ghost-5.png differ diff --git a/slides/imgs/ghosts/ghost-6.png b/slides/imgs/ghosts/ghost-6.png new file mode 100644 index 0000000..4703cca Binary files /dev/null and b/slides/imgs/ghosts/ghost-6.png differ diff --git a/slides/imgs/ghosts/ghost-7.png b/slides/imgs/ghosts/ghost-7.png new file mode 100644 index 0000000..2adbfc1 Binary files /dev/null and b/slides/imgs/ghosts/ghost-7.png differ diff --git a/slides/lib.typ b/slides/lib.typ index a5265da..7f788ab 100644 --- a/slides/lib.typ +++ b/slides/lib.typ @@ -29,3 +29,22 @@ pirat-color.red, }) } ] + +#let ghost(img, ..args,) = { + move( + ..args, + image(img, height: 100pt) + ) +} + +#let ghost-1 = ghost.with("imgs/ghosts/ghost-1.png") +#let ghost-2 = ghost.with("imgs/ghosts/ghost-2.png") +#let ghost-3 = ghost.with("imgs/ghosts/ghost-3.png") +#let ghost-4 = ghost.with("imgs/ghosts/ghost-4.png") +#let ghost-5 = ghost.with("imgs/ghosts/ghost-5.png") +#let ghost-6 = ghost.with("imgs/ghosts/ghost-6.png") +#let ghost-7 = ghost.with("imgs/ghosts/ghost-7.png") +#let eye-1 = ghost.with("imgs/ghosts/eye-1.png") +#let eye-2 = ghost.with("imgs/ghosts/eye-2.png") +#let eye-3 = ghost.with("imgs/ghosts/eye-3.png") +#let eye-4 = ghost.with("imgs/ghosts/eye-4.png")