-
Notifications
You must be signed in to change notification settings - Fork 2
/
06-RR.tex
90 lines (79 loc) · 3.55 KB
/
06-RR.tex
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% %%%%%
%%%%% Template for a six-team round robin quizbowl schedule. %%%%%
%%%%% Copyright 2014, Jonah Greenthal <[email protected]> %%%%%
%%%%% You can use, modify, and distribute this in any way you want, %%%%%
%%%%% as long as you give credit. %%%%%
%%%%% %%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[landscape]{qbschedule}
\usepackage[top=0.5in, bottom=0.5in, left=0.5in, right=0.5in]{geometry}
\def\TournamentName{Six-Team Round Robin}
\def\TournamentSubtitle{\LaTeX\ Schedule Template}
\def\Phase{Preliminary Rounds (1--5)}
\def\ControlRoom{Room Z}
\newarray\Round
\Round(1)={Round 1}
\Round(2)={Round 2}
\Round(3)={Round 3}
\Round(4)={Round 4}
\Round(5)={Round 5}
\newarray\Seed
\Seed(1)={Team Seeded First}
\Seed(2)={Team Seeded Second}
\Seed(3)={Team Seeded Third}
\Seed(4)={Team Seeded Fourth}
\Seed(5)={Team Seeded Fifth}
\Seed(6)={Team Seeded Sixth}
\newarray\Room
\Room(1)={Room A} % Average difference between seeds: 2.0
\Room(2)={Room B} % Average difference between seeds: 2.2
\Room(3)={Room C} % Average difference between seeds: 2.8
\setbool{ShowReaders}{true}
\newarray\Reader
\Reader(1)={Al Anderson}
\Reader(2)={Betsy Baxter}
\Reader(3)={Charlie Castro}
\setbool{ShowScorekeepers}{true}
\newarray\Scorekeeper
\Scorekeeper(1)={Ann Allen}
\Scorekeeper(2)={Bill Berger}
\Scorekeeper(3)={Carly Carter}
\setbool{ShowBuzzerAssignments}{true}
\newarray\Buzzer
\Buzzer(1)={\Seed(3)}
\Buzzer(2)={\Seed(1)}
\Buzzer(3)={\Seed(5)}
% It is generally not necessary to edit anything below this line, but hey, do whatever you want.
\setlength{\StaffSize}{14pt}
\setlength{\BuzzerSize}{14pt}
\setlength{\TeamNameSize}{11pt}
\setlength{\RoomColumnWidth}{2.755in}
\begin{document}
\begin{center}
\rowcolors*{1}{white}{gray}
\begin{tabular}{|y{\LeftColumnWidth}x{\RoomColumnWidth}x{\RoomColumnWidth}x{\RoomColumnWidth}|}
\hline
\rowcolor{black}
\room{Room} & \room{\Room(1)} & \room{\Room(2)} & \room{\Room(3)} \tabularnewline
\ifbool{ShowReaders}{
\staff{Reader} & \staff{\Reader(1)} & \staff{\Reader(2)} & \staff{\Reader(3)} \tabularnewline
}{}
\ifbool{ShowScorekeepers}{
\staff{Scorekeeper} & \staff{\Scorekeeper(1)} & \staff{\Scorekeeper(2)} & \staff{\Scorekeeper(3)} \tabularnewline
}{}
\ifbool{ShowBuzzerAssignments}{
\buzzer{Buzzer System} & \buzzer{\Buzzer(1)} & \buzzer{\Buzzer(2)} & \buzzer{\Buzzer(3)} \tabularnewline
}{}
\hline
\round{\Round(1)} & \matchup{\Seed(5)}{\Seed(3)} & \matchup{\Seed(1)}{\Seed(4)} & \matchup{\Seed(6)}{\Seed(2)} \tabularnewline
\round{\Round(2)} & \matchup{\Seed(2)}{\Seed(5)} & \matchup{\Seed(6)}{\Seed(1)} & \matchup{\Seed(4)}{\Seed(3)} \tabularnewline
\round{\Round(3)} & \matchup{\Seed(3)}{\Seed(1)} & \matchup{\Seed(5)}{\Seed(6)} & \matchup{\Seed(2)}{\Seed(4)} \tabularnewline
\round{\Round(4)} & \matchup{\Seed(6)}{\Seed(4)} & \matchup{\Seed(2)}{\Seed(3)} & \matchup{\Seed(1)}{\Seed(5)} \tabularnewline
\round{\Round(5)} & \matchup{\Seed(1)}{\Seed(2)} & \matchup{\Seed(4)}{\Seed(5)} & \matchup{\Seed(3)}{\Seed(6)} \tabularnewline
\hline
\end{tabular}
\end{center}
\end{document}