Just a variety of notebook paper types.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.1 KiB

\documentclass[twoside]{article}
\usepackage{showframe}
\renewcommand*\ShowFrameColor{\color{red}}
\usepackage{lmodern}
% 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}
\usepackage[most]{tcolorbox}
\usepackage{forloop}
\newcounter{ct} % Create a counter for our loop
\def\lfct{5} % Set this value to the number of pages you want
\usepackage{lipsum}
\begin{document}
% Begin our loop
\forloop{ct}{0}{\value{ct}<\lfct{}}{
\begin{tcolorbox}[title=Information]
The heading information should go here.
\end{tcolorbox}
\begin{tcbraster}[raster columns=4, raster column skip=1mm]
\begin{tcolorbox}[equal height group=A, title=Notes, raster multicolumn=3]
Notes go here \\ \\ \\ \\
\end{tcolorbox}
\begin{tcolorbox}[equal height group=A, title=Cues, raster multicolumn=1]
Cues go here \\ \\
\end{tcolorbox}
\end{tcbraster}
\begin{tcolorbox}[title=Summary]
The summary information should go here.
\end{tcolorbox}
\newpage
% End our loop
}
\end{document}