From 35937e25ff09f9459470fc8849d2c3b41848b1a4 Mon Sep 17 00:00:00 2001 From: Kenneth Odle Date: Sun, 1 Mar 2026 22:04:20 -0500 Subject: [PATCH] Updates to rectangle markers on cover --- cover-XXX.tex | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/cover-XXX.tex b/cover-XXX.tex index 5c0038f..875f1ad 100644 --- a/cover-XXX.tex +++ b/cover-XXX.tex @@ -41,25 +41,37 @@ \usepackage{tikz} \usepackage{eso-pic} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% Adjust the following two variables for each issue %%%%%%%% + % This issue's color (using ninecolors package color options) -\newcommand{\kic}{green} % Replace as necessary +\newcommand{\kic}{brown} % Replace as necessary % This issue's number \newcommand{\kiss}{007} % Replace as necessary +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% Let's get it started %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \begin{document} \thispagestyle{empty} % Issue markings on bottom of spine \AddToShipoutPictureBG{ -\put(1cm,1cm){ +\put(0in,0.5in){ \begin{tikzpicture}[x=1in, y=1in, remember picture, overlay] - \draw[color=\kic6, fill=\kic9, line width=1pt] (5.25,0.00) rectangle (5.75,0.03); - \draw[color=\kic6, fill=\kic9, line width=1pt] (5.25,0.05) rectangle (5.75,0.08); - \draw[color=\kic6, fill=\kic9, line width=1pt] (5.25,0.10) rectangle (5.75,0.13); - \draw[color=\kic6, fill=\kic9, line width=1pt] (5.25,0.15) rectangle (5.75,0.18); - \filldraw[\kic3, fill opacity=0.4] (9.2,0.3) circle (0pt) node[anchor=west]{{\Huge\Huge\kiss}}; +% \draw[color=\kic6, fill=white, line width=0.25pt] (5.25,1.30) rectangle (5.75,1.50); % 40 +% \draw[color=\kic6, fill=white, line width=0.25pt] (5.25,1.05) rectangle (5.75,1.25); % 30 +% \draw[color=\kic6, fill=white, line width=0.25pt] (5.25,0.80) rectangle (5.75,1.00); % 20 +% \draw[color=\kic6, fill=white, line width=0.25pt] (5.25,0.55) rectangle (5.75,0.75); % 10 + \draw[color=\kic6, fill=\kic9, line width=0.25pt] (5.25,0.40) rectangle (5.75,0.50); % 5 + \draw[color=\kic6, fill=\kic9, line width=0.25pt] (5.25,0.30) rectangle (5.75,0.35); % 1 + \draw[color=\kic6, fill=\kic9, line width=0.25pt] (5.25,0.20) rectangle (5.75,0.25); % 1 + \draw[color=\kic6, fill=white, line width=0.25pt] (5.25,0.10) rectangle (5.75,0.15); % 1 + \draw[color=\kic6, fill=white, line width=0.25pt] (5.25,0.00) rectangle (5.75,0.05); % 1 + \filldraw[white] (5.30,0.45) node[anchor=west, scale=0.5]{\kiss}; % Adjust to highest level box used + \filldraw[\kic3, fill opacity=0.4] (9.2,0.3) circle (0pt) node[anchor=west]{{\Huge\Huge\kiss}}; % issue # in lower right corner \end{tikzpicture} } % End put }