Initial commit
This commit is contained in:
commit
273c29e8e9
18
.gitignore
vendored
Normal file
18
.gitignore
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
Covers
|
||||
*bklt*
|
||||
*.aux
|
||||
*.log
|
||||
*.out
|
||||
*.synctex.gz
|
||||
*.toc
|
||||
*.dvi
|
||||
*.odt
|
||||
metric*
|
||||
*.mx1
|
||||
*.abc
|
||||
*.bak
|
||||
*wc*
|
||||
*drafts*
|
||||
/build/*
|
||||
*/build/*
|
||||
*/spoken/*
|
||||
19
chapters/1-titlepage.tex
Normal file
19
chapters/1-titlepage.tex
Normal file
@ -0,0 +1,19 @@
|
||||
%% Title Page
|
||||
\pagestyle{empty}
|
||||
\vspace*{25mm}
|
||||
%\fontsize{28}{42}\selectfont
|
||||
{\centering
|
||||
{\Huge \textsc{Security Envelopes}}
|
||||
\noindent{}{\color{green5}\rule{\textwidth}{1.5pt}}
|
||||
\noindent{}{\color{green5}\rule[2mm]{\textwidth}{0.5pt}}
|
||||
|
||||
\vspace{2mm}
|
||||
{\large A printable journal to keep your collection in.}
|
||||
|
||||
\vspace{20mm}
|
||||
Typeset in \LaTeX{}
|
||||
|
||||
|
||||
} % end centering environment
|
||||
|
||||
\newpage
|
||||
24
chapters/2-impressum.tex
Normal file
24
chapters/2-impressum.tex
Normal file
@ -0,0 +1,24 @@
|
||||
\pagestyle{empty}
|
||||
|
||||
%% Impressum
|
||||
%\setcounter{page}{1}
|
||||
{\LARGE \textbf{Impressum}}
|
||||
|
||||
All contents \copyright 2026 Kenneth John Odle
|
||||
|
||||
\vspace{50mm}
|
||||
|
||||
\noindent{}More information about this zine (as well as information about my other zines) can be found here:
|
||||
|
||||
\kref{https://just13.click/just13}{just13.click/just13}
|
||||
|
||||
\medskip
|
||||
|
||||
\medskip
|
||||
|
||||
\noindent{}I am on social media at:
|
||||
|
||||
\noindent{}\kref{https://bsky.app/profile/iswpw.bsky.social}{https://bsky.app/profile/iswpw.bsky.social}\\
|
||||
\kref{https://mastodon.social/@kjodle}{https://mastodon.social/@kjodle}
|
||||
|
||||
\newpage
|
||||
6
parts/1-packages.tex
Normal file
6
parts/1-packages.tex
Normal file
@ -0,0 +1,6 @@
|
||||
\usepackage{noto}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{ninecolors}
|
||||
\usepackage{tabularray}
|
||||
\usepackage{tikz}
|
||||
\usepackage[hidelinks]{hyperref}
|
||||
21
parts/2-memoir.tex
Normal file
21
parts/2-memoir.tex
Normal file
@ -0,0 +1,21 @@
|
||||
%% Page styles %% Specific to Memoir class
|
||||
%\newcommand{\kinfo}{{\footnotesize Chapter \thechapter{} • \S{} \rightmark{}}}
|
||||
%\newcommand{\kinfo}{{\footnotesize Chapter \thechapter: \leftmark{} • \rightmark}}
|
||||
%\newcommand{\kinfo}{{\footnotesize Issue \kissue{} • Summer}}
|
||||
\makepagestyle{kpage}
|
||||
\makeevenhead{kpage}{\textsc{Security Envelopes}}{}{}
|
||||
\makeoddhead{kpage}{}{}{\textsc{Security Envelopes}}
|
||||
\makeevenfoot{kpage}{}{\thepage}{}
|
||||
\makeoddfoot{kpage}{}{\thepage}{}
|
||||
\makeheadrule{kpage}{\textwidth}{0.1mm}
|
||||
\makefootrule{kpage}{\textwidth}{0.1mm}{2mm}
|
||||
\makepsmarks{kpage}{
|
||||
\nouppercaseheads
|
||||
\createmark {chapter}{left}{nonumber}{}{}
|
||||
\createmark {section}{right}{nonumber}{}{}
|
||||
}
|
||||
\makeatother
|
||||
|
||||
%% Needed for memoir class:
|
||||
\checkandfixthelayout
|
||||
|
||||
7
parts/2a-memoir-let.tex
Normal file
7
parts/2a-memoir-let.tex
Normal file
@ -0,0 +1,7 @@
|
||||
%% Dimensions
|
||||
\setstocksize{11in}{8.5in}
|
||||
\settrimmedsize{11in}{8.5in}{*}
|
||||
\settrims{0mm}{0mm}
|
||||
\setlrmarginsandblock{30mm}{20mm}{*}
|
||||
\setulmarginsandblock{22mm}{20mm}{*}
|
||||
|
||||
1
parts/3-variables.tex
Normal file
1
parts/3-variables.tex
Normal file
@ -0,0 +1 @@
|
||||
%
|
||||
39
parts/4-commands.tex
Normal file
39
parts/4-commands.tex
Normal file
@ -0,0 +1,39 @@
|
||||
\newcommand{\kbox}{
|
||||
\vspace{5mm}
|
||||
\centering
|
||||
\begin{tikzpicture}[x=1mm, y=1mm]
|
||||
\draw[gray8] (0,0) -- (50,0) -- (50,50) -- (0,50) -- cycle;
|
||||
\end{tikzpicture}
|
||||
\vspace{5mm}
|
||||
}
|
||||
|
||||
\newcommand{\ksec}{
|
||||
\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 = {fg=gray2, font=\fontsize{6pt}{6pt}\selectfont},
|
||||
row{1} = {t, font=\fontsize{9pt}{6pt}\selectfont},
|
||||
}
|
||||
{Sample: \\ \kbox{}} & {Sample: \\ \kbox{}} \\
|
||||
Date: & Date: \\
|
||||
Source: & Source: \\
|
||||
Notes: & Notes: \\
|
||||
& \\
|
||||
& \\
|
||||
& \\
|
||||
& \\
|
||||
& \\
|
||||
\end{tblr}
|
||||
\vspace{5mm}
|
||||
}
|
||||
|
||||
% Make hrefs easier (must load package hyperref}
|
||||
\newcommand\kref[2]{\href{#1}{{\texttt{#2}}}}
|
||||
30
security-envelopes-letter.tex
Normal file
30
security-envelopes-letter.tex
Normal file
@ -0,0 +1,30 @@
|
||||
\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}
|
||||
|
||||
|
||||
\begin{document}
|
||||
|
||||
\input{chapters/1-titlepage}
|
||||
\input{chapters/2-impressum}
|
||||
|
||||
\setcounter{page}{1}
|
||||
\pagestyle{kpage}
|
||||
|
||||
|
||||
\ksec
|
||||
|
||||
\ksec
|
||||
|
||||
\ksec
|
||||
|
||||
\ksec
|
||||
|
||||
\ksec
|
||||
|
||||
\ksec
|
||||
|
||||
\end{document}
|
||||
Loading…
Reference in New Issue
Block a user