diff --git a/stuff/bingo-empty.pdf b/stuff/bingo-empty.pdf new file mode 100644 index 0000000..e3bf267 Binary files /dev/null and b/stuff/bingo-empty.pdf differ diff --git a/stuff/bingo-empty.typst b/stuff/bingo-empty.typst new file mode 100644 index 0000000..25e9a5e --- /dev/null +++ b/stuff/bingo-empty.typst @@ -0,0 +1,44 @@ +#set page(flipped: true) // A4 paper format + +// Bingo Title += OSAMC BINGO + +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. + + +#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) ], + ) + ] +})