-
Notifications
You must be signed in to change notification settings - Fork 0
/
bingo_template
40 lines (31 loc) · 1.18 KB
/
bingo_template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
\usepackage{tikz}
\usepackage{mathpazo}
\PreviewEnvironment{tikzpicture}
\newcounter{row}
\newcounter{col}
\newcommand\setrow[5]{
\setcounter{col}{1}
\foreach \n in {#1, #2, #3, #4, #5} {
\edef\x{\value{col}}
\edef\y{\value{row}}
\node[anchor=center, text width=3cm, align=center] at (-2.5+5*\x, -2.5+5*\y) {\n};
\stepcounter{col}
}
\stepcounter{row}
}
\begin{document}
\begin{tikzpicture}[scale=0.7]
\begin{scope}
\node[anchor=center] at (12.5, 25.5) {\LARGE Jingle Bell Bingo};
\draw[very thick, scale=5] (0, 0) grid (5, 5);
\setcounter{row}{1}
\setrow {\normalsize ~} {\normalsize ~} {\normalsize ~} {\normalsize ~} {\normalsize ~}
\setrow {\normalsize ~} {\normalsize ~} {\normalsize ~} {\normalsize ~} {\normalsize ~}
\setrow {\normalsize ~} {\normalsize ~} {\normalsize FREE SPACE (aka PTO)} {\normalsize ~} {\normalsize ~}
\setrow {\normalsize ~} {\normalsize ~} {\normalsize ~} {\normalsize ~} {\normalsize ~}
\setrow {\normalsize ~} {\normalsize ~} {\normalsize ~} {\normalsize ~} {\normalsize ~}
\end{scope}
\end{tikzpicture}
\end{document}