7. Blank Number Lines booklet

7.1. Multi page booklets

The Booklet code allows 8 diagrams per page, for up to 10 pages.
There are 3 blank number lines:
  • -10 to 10

  • 0 to 20

  • -20 to 0


7.1.1. Booklet template

All 3 number lines use the same booklet template.
The multi page LaTeX number lines booklet template is below.
 1\documentclass[leqno, 12pt]{article}
 2\usepackage{tikz}
 3\usetikzlibrary{positioning}
 4\usetikzlibrary {arrows.meta}
 5\usetikzlibrary{bending}
 6\usepackage{ulem}
 7\usepackage[a4paper, portrait, margin=1cm]{geometry}
 8\usepackage{fancyhdr}
 9
10\def\jumpheight{10}
11% % \def\qgap{\rule[-1pt]{1.0em}{.25pt}}
12\def\qgap{\raisebox{-1pt}{\dotuline{\phantom{X}}}}
13
14\def \HeadingQuestions {\section*{\Large Name: \underline{\hspace{8cm}} \hfill Date: \underline{\hspace{3cm}}} \vspace{-3mm}
15{Number lines: Questions} \vspace{1pt}\hrule}
16
17% raise footer with page number; no header
18\fancypagestyle{myfancypagestyle}{
19  \fancyhf{} % clear all header and footer fields
20  \renewcommand{\headrulewidth}{0pt} % no rule under header
21  \fancyfoot[C] {\thepage} \setlength{\footskip}{14.5pt} % raise page number allowed min 14.5pt
22}
23\pagestyle{myfancypagestyle}  % apply myfancypagestyle
24
25\begin{document}
26  \HeadingQuestions
27  \vspace{-1mm}
28  <<diagrams>>
29\end{document}
30

7.2. Blank -10 to 10

number_lines_blank

nlBk_blank

7.2.1. Diagram template

The booklet diagram template is below.
 1\begin{equation}
 2    \begin{tikzpicture}[scale=0.67, baseline={([yshift=-1pt]current bounding box.north)}]
 3        % axis, arrow style to-to
 4        \draw[{To[scale=1.3]}-{To[scale=1.3]}, line width=1pt] (-10.4, 0) -- (10.4, 0);
 5        % tick marks
 6        \foreach \x in {-10,-9,...,10}
 7            \draw[shift={(\x,0)},color=black, line width=1pt] (0pt,-14pt) -- (0pt,0pt);
 8        % numbers along each axis
 9        \foreach \x in {-10}
10            \draw[shift={(\x -0.3,-0.8)},color=black] node[font=\large,text height=12pt] {$\x$};
11        \foreach \x in {0,10}
12            \draw[shift={(\x,-0.8)},color=black] node[font=\large,text height=12pt] {$\x$};
13        % dots
14        % arrow
15        % equation at right end
16        \node [font=\large, anchor=east] at (15,1.65){$  $};
17    \end{tikzpicture}
18\end{equation}

7.3. Blank 0 to 20

number_lines_blank_0to20

nlBk_blank_0to20

7.3.1. Booklet diagram template

The booklet diagram template is below.
 1\begin{equation}
 2    \begin{tikzpicture}[scale=0.67, baseline={([yshift=-1pt]current bounding box.north)}]
 3        % axis, arrow style to-to
 4        \draw[{To[scale=1.3]}-{To[scale=1.3]}, line width=1pt] (-0.4, 0) -- (20.4, 0);
 5        % tick marks
 6        \foreach \x in {0,1,...,20}
 7            \draw[shift={(\x,0)},color=black, line width=1pt] (0pt,-14pt) -- (0pt,0pt);
 8        % numbers along each axis
 9        \foreach \x in {0,10,20}
10            \draw[shift={(\x,-0.8)},color=black] node[font=\large,text height=12pt] {$\x$};
11        % equation at right end
12        \node [font=\large, anchor=east] at (25,1.65) {$  $};
13    \end{tikzpicture}
14\end{equation}

7.4. Blank -20 to 0

number_lines_blank_neg20to0

nlBk_blank_neg20to0

7.4.1. Booklet diagram template

The booklet diagram template is below.
 1\begin{equation}
 2    \begin{tikzpicture}[scale=0.67, baseline={([yshift=-1pt]current bounding box.north)}]
 3        % axis, arrow style to-to
 4        \draw[{To[scale=1.3]}-{To[scale=1.3]}, line width=1pt] (-20.4, 0) -- (0.4, 0);
 5        % tick marks
 6        \foreach \x in {-20,-19,...,0}
 7            \draw[shift={(\x,0)},color=black, line width=1pt] (0pt,-14pt) -- (0pt,0pt);
 8        % numbers along each axis
 9        \foreach \x in {-20,-10}
10            \draw[shift={(\x -0.3,-0.8)},color=black] node[font=\large,text height=12pt] {$\x$};
11        \foreach \x in {0}
12            \draw[shift={(\x,-0.8)},color=black] node[font=\large,text height=12pt] {$\x$};
13        % equation at right end
14        \node [font=\large, anchor=east] at (5,1.65) {$  $};
15    \end{tikzpicture}
16\end{equation}
17