I want to make a teacher's lesson planning book. (You know the story: I've never found one I liked, so I want to make my own.) To do this, I need a planning grid that spans a two-page spread, with the days of the week labeled across the top; and I need forty such spreads, one for each week of the school calendar. So far I have this:
\documentclass{memoir}
\usepackage[paperwidth=17in,paperheight=11in,left=0pt,right=0pt,top=1cm,bottom=1cm]{geometry}
\usepackage{forloop}
\usepackage{tabularx}
\usepackage{changepage}
\newcommand{\aline}{\\\hline &&&&&&\rule{0cm}{5cm}}
\begin{document}
\pagenumbering{gobble}
\newcounter{theyflines}
\begin{adjustwidth}{2in}{}
Week of \makebox[1in]{\dotfill} to \makebox[1in]{\dotfill}
\end{adjustwidth}
\vspace{5mm}
\noindent \begin{tabularx}{\paperwidth}{p{2cm}|p{5cm}|X|X|X|X|X}
\hline
Course & Weekly goal & Monday & Tuesday & Wednesday & Thursday & Friday
\forloop{theyflines}{1}{\value{theyflines} < 5}{\aline}\\
\hline
&&&&&&\rule{0cm}{2cm}\\
\hline
\end{tabularx}
\end{document}
That gets me a grid that spans two pages. How do I turn that into a planning book? I see at least two sub-questions:
- How do I split the grid into two letter-size pages, so that I can give the copy shop a PDF of a letter-size book to print? (I did find this answer, but I thought it might be overkill to put the table into an image and then split the image. Or is that the best solution?)
- Is there a better way to build the whole book than copy-pasting the grid forty times? I could use another
forloop, but won't that mess up the page division I need in item 1?
forloopto create the entire 40-wk sequence? Or something else? – crmdgn Apr 22 '19 at 13:20