osamc.de/stuff/bingo.typst
2025-03-18 19:52:05 +01:00

64 lines
2.1 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#set page(flipped: true) // A4 paper format
// Bingo Title
= OSAMC BINGO 2025-03
Spielregeln: Schreibe je einen Begriff in ein Feld. Höre während des Treffens zu sobald jemand den Begriff nennt, markiere das Feld.
Übersetzte Begriffe (Ton = Sound o. Beamer = Projektor) zählen auch.
Gewonnen hat, wer eine durchgehende Reihe horizontal, vertikal oder diagonal markiert.
#let words = (
"Ardour", "JACK", "Pipewire", "Plugin",
"MIDI", "Gitarre", "Ton", "Chat",
"Latenz", "Terminal", "Lizenz", "Akkord",
"Platte", "Uhr", "Projektor", "Stecker"
)
#place(right, dy: 2em, dx: -32em, {
set align(left)
show text: strong
[
= Begriffe
#for word in words.sorted() [
- #word
]
]
})
#h(1cm) // Spacer
#grid(
columns: 4,
rows: 4,
row-gutter: 1em,
column-gutter: 1em,
[#rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) ],
[#rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) ],
[#rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) ],
[#rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) ],
)
#place(top, dy: 8em, dx: 35em, {
set align(left)
show text: strong
[
#grid(
columns: 4,
rows: 4,
row-gutter: 1em,
column-gutter: 1em,
[#rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) ],
[#rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) ],
[#rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) ],
[#rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) #rect(width: 2cm, height: 2cm) ],
)
]
})