2024-04-03 00:09:39 +00:00
|
|
|
\documentclass[twoside]{article}
|
|
|
|
|
|
|
|
\usepackage{showframe}
|
|
|
|
\renewcommand*\ShowFrameColor{\color{red}}
|
|
|
|
|
2024-04-04 13:35:52 +00:00
|
|
|
%\usepackage{lmodern}
|
|
|
|
% Select an appropriate monotype font
|
|
|
|
\usepackage[varqu]{inconsolata}
|
2024-04-03 00:09:39 +00:00
|
|
|
|
|
|
|
% Let's set up our page size
|
|
|
|
\usepackage[
|
|
|
|
letterpaper,
|
|
|
|
% A4,
|
|
|
|
bindingoffset=15mm,
|
|
|
|
textheight=250mm,
|
|
|
|
textwidth=175mm,
|
|
|
|
top=14mm,
|
|
|
|
footskip=5mm,
|
|
|
|
marginparwidth=0mm,
|
|
|
|
marginparsep=0mm
|
|
|
|
]{geometry}
|
|
|
|
|
2024-04-04 00:21:44 +00:00
|
|
|
\usepackage[most]{tcolorbox}
|
2024-04-03 00:09:39 +00:00
|
|
|
|
|
|
|
\usepackage{forloop}
|
|
|
|
\newcounter{ct} % Create a counter for our loop
|
|
|
|
\def\lfct{5} % Set this value to the number of pages you want
|
|
|
|
|
2024-04-04 13:29:01 +00:00
|
|
|
\usepackage{tabularray}
|
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
|
|
|
|
\forloop{ct}{0}{\value{ct}<\lfct{}}{
|
|
|
|
|
|
|
|
|
2024-04-04 13:51:50 +00:00
|
|
|
\begin{tcolorbox}[title=Information, colback=white, colbacktitle=blue!15!white, coltitle=blue!75!white]
|
2024-04-04 13:29:01 +00:00
|
|
|
\begin{tblr}{
|
|
|
|
width = 160mm,
|
|
|
|
colspec = { | X[60,l] | X[40,l] |},
|
|
|
|
hlines = {0.5pt, gray8},
|
|
|
|
vlines = {0.5pt, gray8}
|
|
|
|
}
|
|
|
|
Name: & Class: \\
|
|
|
|
Subject: & Date: \\
|
|
|
|
\end{tblr}
|
2024-04-03 00:09:39 +00:00
|
|
|
\end{tcolorbox}
|
|
|
|
|
2024-04-04 13:51:50 +00:00
|
|
|
\begin{tcbraster}[raster columns=4, raster column skip=1mm, colbacktitle=blue!15!white]
|
|
|
|
\begin{tcolorbox}[equal height group=A, title=Notes, raster multicolumn=3, colback=white,colbacktitle=blue!15!white, coltitle=blue!75!white]
|
2024-04-04 13:29:01 +00:00
|
|
|
\begin{enumerate}
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\item \hrulefill
|
|
|
|
\end{enumerate}
|
2024-04-04 00:21:44 +00:00
|
|
|
\end{tcolorbox}
|
2024-04-04 13:51:50 +00:00
|
|
|
\begin{tcolorbox}[equal height group=A, title=Cues, raster multicolumn=1, colback=white, colbacktitle=blue!15!white, coltitle=blue!75!white]
|
2024-04-04 00:21:44 +00:00
|
|
|
\end{tcolorbox}
|
|
|
|
\end{tcbraster}
|
|
|
|
|
2024-04-04 13:51:50 +00:00
|
|
|
\begin{tcolorbox}[title=Summary, colback=white, colbacktitle=blue!15!white, coltitle=blue!75!white]
|
2024-04-04 00:21:44 +00:00
|
|
|
\end{tcolorbox}
|
|
|
|
|
2024-04-03 00:09:39 +00:00
|
|
|
\newpage
|
|
|
|
|
|
|
|
|
|
|
|
% End our loop
|
|
|
|
}
|
|
|
|
|
|
|
|
\end{document}
|