2024-04-03 00:09:39 +00:00
|
|
|
\documentclass[twoside]{article}
|
|
|
|
|
|
|
|
% Let's set up our page size
|
|
|
|
\usepackage[
|
|
|
|
letterpaper,
|
|
|
|
% A4,
|
2024-04-05 18:21:31 +00:00
|
|
|
% Adjust the measurements below if necessary for A4 paper
|
2024-04-03 00:09:39 +00:00
|
|
|
bindingoffset=15mm,
|
|
|
|
textheight=250mm,
|
|
|
|
textwidth=175mm,
|
2024-04-05 17:49:53 +00:00
|
|
|
top=12mm,
|
|
|
|
bottom=10mm,
|
|
|
|
footskip=0mm,
|
2024-04-03 00:09:39 +00:00
|
|
|
marginparwidth=0mm,
|
|
|
|
marginparsep=0mm
|
|
|
|
]{geometry}
|
|
|
|
|
2024-04-05 18:21:31 +00:00
|
|
|
% Select an appropriate monotype font
|
|
|
|
\usepackage[varqu]{inconsolata}
|
|
|
|
|
|
|
|
% Make nice boxes for our notes
|
2024-04-04 00:21:44 +00:00
|
|
|
\usepackage[most]{tcolorbox}
|
2024-04-03 00:09:39 +00:00
|
|
|
|
2024-04-05 18:21:31 +00:00
|
|
|
% Gain control over our numbered lists
|
2024-04-04 14:30:38 +00:00
|
|
|
\usepackage[shortlabels]{enumitem}
|
|
|
|
|
2024-04-05 18:21:31 +00:00
|
|
|
% Make more than one page % NO TOUCHY!
|
2024-04-03 00:09:39 +00:00
|
|
|
\usepackage{forloop}
|
|
|
|
\newcounter{ct} % Create a counter for our loop
|
2024-04-05 14:35:29 +00:00
|
|
|
\newcounter{pgct} % Create a counter for our pages
|
|
|
|
\setcounter{pgct}{1}
|
|
|
|
|
2024-04-05 18:21:31 +00:00
|
|
|
% Set this value to the number of pages you want
|
|
|
|
\def\lfct{10}
|
2024-04-03 00:09:39 +00:00
|
|
|
|
2024-04-05 18:21:31 +00:00
|
|
|
% Define color variables so that it is easy to change colors consistently
|
2024-04-05 17:09:30 +00:00
|
|
|
\def\bordercolor{cyan!50!white}
|
2024-04-05 17:49:53 +00:00
|
|
|
\def\titlebg{cyan!10!white}
|
2024-04-05 17:09:30 +00:00
|
|
|
\def\titletxt{cyan!75!white}
|
|
|
|
\def\linecolor{cyan!25!white}
|
2024-04-05 17:19:36 +00:00
|
|
|
\def\numbercolor{cyan!50!white}
|
2024-04-05 17:09:30 +00:00
|
|
|
|
2024-04-05 17:49:53 +00:00
|
|
|
\def\infoframe{red!25}
|
2024-04-05 17:58:23 +00:00
|
|
|
\def\infotxt{red!70}
|
2024-04-05 17:49:53 +00:00
|
|
|
|
2024-04-05 18:21:31 +00:00
|
|
|
% Let's make lines easier
|
2024-04-05 17:09:30 +00:00
|
|
|
\def\kline{{\color{\linecolor}\hrulefill}}
|
2024-04-04 14:30:38 +00:00
|
|
|
|
2024-04-03 00:09:39 +00:00
|
|
|
\begin{document}
|
2024-04-04 13:35:52 +00:00
|
|
|
\ttfamily
|
2024-04-03 00:09:39 +00:00
|
|
|
|
|
|
|
% Begin our loop
|
2024-04-05 17:49:53 +00:00
|
|
|
\forloop{ct}{0}{\value{ct}<\lfct{}}{
|
2024-04-03 00:09:39 +00:00
|
|
|
|
2024-04-05 14:35:29 +00:00
|
|
|
\thispagestyle{empty}
|
|
|
|
|
2024-04-05 17:49:53 +00:00
|
|
|
%%%%% Information Box %%%%%
|
2024-04-04 19:00:14 +00:00
|
|
|
\begin{tcolorbox}[
|
|
|
|
title=\hphantom{wwn}Information,
|
|
|
|
colback=white,
|
2024-04-05 17:09:30 +00:00
|
|
|
colbacktitle=\titlebg,
|
2024-04-05 17:19:36 +00:00
|
|
|
coltitle=\titletxt,
|
2024-04-05 17:09:30 +00:00
|
|
|
colframe=\bordercolor,
|
|
|
|
boxrule=0.3mm,
|
2024-04-04 19:00:14 +00:00
|
|
|
left=-1mm,
|
|
|
|
right=-1mm,
|
|
|
|
top=-1mm,
|
2024-04-05 17:28:12 +00:00
|
|
|
bottom=-1mm,
|
2024-04-04 19:00:14 +00:00
|
|
|
]
|
|
|
|
\begin{tcbraster}[
|
|
|
|
raster columns=6,
|
2024-04-05 17:19:36 +00:00
|
|
|
colbacktitle=\titlebg,
|
2024-04-04 19:00:14 +00:00
|
|
|
raster column skip=0mm,
|
|
|
|
raster row skip=0mm,
|
|
|
|
left=0mm
|
|
|
|
]
|
|
|
|
\begin{tcolorbox}[
|
|
|
|
height=10mm,
|
2024-04-05 17:49:53 +00:00
|
|
|
colframe=\infoframe,
|
2024-04-04 19:00:14 +00:00
|
|
|
colback=white,
|
|
|
|
beforeafter skip=-1mm,
|
|
|
|
raster multicolumn=4,
|
|
|
|
sharp corners=all,
|
2024-04-05 17:49:53 +00:00
|
|
|
colupper=\infotxt,
|
2024-04-05 17:28:12 +00:00
|
|
|
boxrule=0.3mm,
|
2024-04-05 17:58:23 +00:00
|
|
|
toprule=0mm,
|
|
|
|
leftrule=0mm,
|
2024-04-04 19:00:14 +00:00
|
|
|
]
|
|
|
|
Name:
|
|
|
|
\end{tcolorbox}
|
|
|
|
\begin{tcolorbox}[height=10mm,
|
2024-04-05 17:49:53 +00:00
|
|
|
colframe=\infoframe,
|
2024-04-04 19:00:14 +00:00
|
|
|
colback=white,
|
|
|
|
beforeafter skip=-1mm,
|
|
|
|
raster multicolumn=2,
|
|
|
|
sharp corners=all,
|
2024-04-05 17:49:53 +00:00
|
|
|
colupper=\infotxt,
|
2024-04-05 17:28:12 +00:00
|
|
|
boxrule=0.3mm,
|
2024-04-05 17:58:23 +00:00
|
|
|
toprule=0mm,
|
|
|
|
rightrule=0mm,
|
|
|
|
leftrule=0mm,
|
2024-04-04 19:00:14 +00:00
|
|
|
]
|
|
|
|
Class:
|
|
|
|
\end{tcolorbox}
|
|
|
|
\begin{tcolorbox}[
|
|
|
|
height=10mm,
|
2024-04-05 17:49:53 +00:00
|
|
|
colframe=\infoframe,
|
2024-04-04 19:00:14 +00:00
|
|
|
colback=white,
|
|
|
|
beforeafter skip=-1mm,
|
|
|
|
raster multicolumn=4,
|
|
|
|
sharp corners=all,
|
|
|
|
rounded corners=southwest,
|
2024-04-05 17:49:53 +00:00
|
|
|
colupper=\infotxt,
|
2024-04-05 17:28:12 +00:00
|
|
|
boxrule=0.3mm,
|
2024-04-05 17:58:23 +00:00
|
|
|
leftrule=0mm,
|
|
|
|
bottomrule=0mm,
|
|
|
|
toprule=0mm,
|
2024-04-04 19:00:14 +00:00
|
|
|
]
|
|
|
|
Topic:
|
|
|
|
\end{tcolorbox}
|
|
|
|
\begin{tcolorbox}[
|
|
|
|
height=10mm,
|
2024-04-05 17:49:53 +00:00
|
|
|
colframe=\infoframe,
|
2024-04-04 19:00:14 +00:00
|
|
|
colback=white,
|
|
|
|
beforeafter skip=-1mm,
|
|
|
|
raster multicolumn=2,
|
|
|
|
sharp corners=all,
|
|
|
|
rounded corners=southeast,
|
2024-04-05 17:49:53 +00:00
|
|
|
colupper=\infotxt,
|
2024-04-05 17:58:23 +00:00
|
|
|
boxrule=0.0mm,
|
2024-04-04 19:00:14 +00:00
|
|
|
]
|
2024-04-05 17:19:36 +00:00
|
|
|
Date:\hphantom{XXLXXLXXXXXXXX} Page: {\Large \arabic{pgct}}
|
2024-04-04 19:00:14 +00:00
|
|
|
\end{tcolorbox}
|
|
|
|
\end{tcbraster}
|
2024-04-03 00:09:39 +00:00
|
|
|
\end{tcolorbox}
|
|
|
|
|
2024-04-05 17:49:53 +00:00
|
|
|
% Adjust spacing
|
|
|
|
\vspace{-2mm}
|
|
|
|
|
|
|
|
%%%%% Notes and Cues Boxes %%%%%
|
2024-04-05 17:09:30 +00:00
|
|
|
\begin{tcbraster}[
|
|
|
|
raster columns=4,
|
|
|
|
raster column skip=1mm,
|
2024-04-05 17:19:36 +00:00
|
|
|
colbacktitle=\titlebg
|
2024-04-05 17:09:30 +00:00
|
|
|
]
|
|
|
|
\begin{tcolorbox}[
|
|
|
|
equal height group=A,
|
|
|
|
title=Notes,
|
|
|
|
raster multicolumn=3,
|
|
|
|
colback=white,
|
2024-04-05 17:19:36 +00:00
|
|
|
colbacktitle=\titlebg,
|
|
|
|
coltitle=\titletxt,
|
2024-04-05 17:09:30 +00:00
|
|
|
colframe=\bordercolor,
|
|
|
|
boxrule=0.3mm,
|
|
|
|
]
|
|
|
|
\begin{enumerate}[
|
|
|
|
leftmargin=1mm,
|
|
|
|
rightmargin=-4mm,
|
|
|
|
labelsep=1mm,
|
|
|
|
label=\color{\numbercolor}\theenumi,
|
|
|
|
parsep=0mm,
|
|
|
|
]
|
2024-04-04 14:30:38 +00:00
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
2024-04-05 17:49:53 +00:00
|
|
|
\item \kline
|
|
|
|
\item \kline
|
2024-04-04 13:29:01 +00:00
|
|
|
\end{enumerate}
|
2024-04-04 00:21:44 +00:00
|
|
|
\end{tcolorbox}
|
2024-04-05 17:09:30 +00:00
|
|
|
\begin{tcolorbox}[
|
|
|
|
equal height group=A,
|
|
|
|
title=Cues,
|
|
|
|
raster multicolumn=1,
|
|
|
|
colback=white,
|
2024-04-05 17:19:36 +00:00
|
|
|
colbacktitle=\titlebg,
|
|
|
|
coltitle=\titletxt,
|
2024-04-05 17:09:30 +00:00
|
|
|
colframe=\bordercolor,
|
|
|
|
boxrule=0.3mm,
|
|
|
|
]
|
2024-04-04 00:21:44 +00:00
|
|
|
\end{tcolorbox}
|
|
|
|
\end{tcbraster}
|
|
|
|
|
2024-04-05 17:49:53 +00:00
|
|
|
% Adjust spacing
|
|
|
|
\vspace{-2mm}
|
|
|
|
|
|
|
|
%%%%% Summary Box %%%%%
|
2024-04-05 17:09:30 +00:00
|
|
|
\begin{tcolorbox}[
|
|
|
|
title=Summary,
|
|
|
|
colback=white,
|
2024-04-05 17:19:36 +00:00
|
|
|
colbacktitle=\titlebg,
|
|
|
|
coltitle=\titletxt,
|
2024-04-05 17:09:30 +00:00
|
|
|
colframe=\bordercolor,
|
|
|
|
boxrule=0.3mm,
|
|
|
|
]
|
2024-04-04 14:30:38 +00:00
|
|
|
|
2024-04-05 17:09:30 +00:00
|
|
|
\begin{enumerate}[
|
|
|
|
leftmargin=0.3mm,
|
|
|
|
rightmargin=-4mm,
|
|
|
|
labelsep=1mm,
|
|
|
|
label=\color{\numbercolor}\theenumi,
|
|
|
|
parsep=0mm]
|
2024-04-04 14:30:38 +00:00
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\item \kline
|
|
|
|
\end{enumerate}
|
|
|
|
|
2024-04-04 00:21:44 +00:00
|
|
|
\end{tcolorbox}
|
|
|
|
|
2024-04-05 18:21:31 +00:00
|
|
|
% Step our counter and move on to the next page
|
2024-04-05 14:35:29 +00:00
|
|
|
\stepcounter{pgct}
|
2024-04-03 00:09:39 +00:00
|
|
|
\newpage
|
|
|
|
|
|
|
|
% End our loop
|
2024-04-05 17:49:53 +00:00
|
|
|
}
|
2024-04-03 00:09:39 +00:00
|
|
|
|
|
|
|
\end{document}
|