Text to black; added numbered version

This commit is contained in:
Kenneth John Odle 2026-07-08 14:32:08 -04:00
parent 6ba688b6d1
commit f2e48c9563
2 changed files with 55 additions and 1 deletions

View File

@ -19,7 +19,7 @@
hlines = {gray7,0.5pt,solid},
vlines = {gray7,0.5pt,solid},
rows = {rowsep=1.5pt},
cells = {fg=gray2, font=\fontsize{6pt}{6pt}\selectfont},
cells = {font=\fontsize{6pt}{6pt}\selectfont},
row{1} = {t, font=\fontsize{9pt}{6pt}\selectfont},
}
{Sample: \\ \kbox{}} & {Sample: \\ \kbox{}} \\

View File

@ -0,0 +1,54 @@
\documentclass[10pt,anypage]{memoir}
\input{parts/1-packages}
\input{parts/2a-memoir-let}
\input{parts/2-memoir}
%\input{parts/3-variables}
\input{parts/4-commands}
\usepackage{pgffor}
\usepackage{calculator}
\newcommand{\ksek}{
\noindent{}\begin{tblr}
[
caption = {},
label = {tb:},
% theme = {custom1}
]{
width = {\textwidth},
colspec = { X[1,l] X[1,l]},
hlines = {gray7,0.5pt,solid},
vlines = {gray7,0.5pt,solid},
rows = {rowsep=1.5pt},
cells = {font=\fontsize{6pt}{6pt}\selectfont},
row{1} = {t, font=\fontsize{9pt}{6pt}\selectfont},
}
{Sample \#\n: \\ \kbox{}} & {Sample \#\ADD{\n}{1}{\sol}\sol: \\ \kbox{}} \\
Date: & Date: \\
Source: & Source: \\
Notes: & Notes: \\
& \\
& \\
& \\
& \\
& \\
\end{tblr}
\vspace{5mm}\\
}
\begin{document}
\input{chapters/1-titlepage}
\input{chapters/2-impressum}
\setcounter{page}{1}
\pagestyle{kpage}
\SingleSpace % Specific to memoir class
\foreach \n in {1,3,...,79}
{
\ksek
} % end forloop
\end{document}