Updated to -001, removed lipsum package

This commit is contained in:
Kenneth John Odle 2026-06-06 13:00:29 -04:00
parent 47ac995b3f
commit 16a2adaa53

87
walking-001.tex Normal file
View File

@ -0,0 +1,87 @@
\documentclass[9pt,openany]{memoir}
%% Generic packages
\usepackage[utf8]{inputenc}
\usepackage{ninecolors}
%%% Page layout (half letter) %% Specific to Memoir class
% https://tex.stackexchange.com/a/758505/245702
\setstocksize{222.3mm}{142.9mm}
\settrimmedsize{222.3mm}{142.9mm}{*}
%\settrims{3.2mm}{3.2mm}
\setlrmarginsandblock{15mm}{15mm}{*}
\setulmarginsandblock{25mm}{25mm}{*}
%%% Chapter titles %% Specific to Memoir class
\makechapterstyle{kchap}{
\renewcommand*{\chapterheadstart}{\vspace*{\beforechapskip}}
\renewcommand*{\printchaptername}{}
\renewcommand*{\chapternamenum}{\space}
\renewcommand*{\printchapternum}{\hfill\chapnumfont Chapter \thechapter}
\renewcommand*{\afterchapternum}{\par\nobreak\vskip \midchapskip\hrule\vspace{5mm}}
\renewcommand*{\printchapternonum}{}
%\renewcommand*{\printchaptertitle}[1]{\chaptitlefont #1}
\renewcommand*{\afterchaptertitle}{\par\nobreak\vskip \afterchapskip}
\renewcommand*{\chapnamefont}{\normalfont\normalsize}
\renewcommand*{\chapnumfont}{\normalfont\large\itshape}
\renewcommand*{\chaptitlefont}{\normalfont\Huge\scshape}
\setlength{\beforechapskip}{0mm}
\setlength{\midchapskip}{2mm}
\setlength{\afterchapskip}{10mm}
}
%%% Page styles %% Specific to Memoir class
%\newcommand{\kinfo}{{\footnotesize Chapter \thechapter{}\S{} \rightmark{}}}
\newcommand{\kinfo}{{\footnotesize Chapter \thechapter: \leftmark{}\rightmark}}
\makepagestyle{kpage}
\makeevenhead{kpage}{\textsc{Walking}}{}{\kinfo}
\makeoddhead{kpage}{\kinfo}{}{\textsc{Walking}}
\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
%%% Other Memoir class settings
\setlength{\epigraphwidth}{16em}
%%% required if you have changed the settings! %% Specific to Memoir class
\checkandfixthelayout
%%% Multicolumns
\usepackage{multicol}
\setlength{\columnseprule}{0.5pt}
\def\columnseprulecolor{\color{gray7}}
\setlength{\columnsep}{5mm}
%%% Fonts
\usepackage{mathptmx}
%\usepackage{newtxtext,newtxmath}
%%% Get it started
\checkandfixthelayout
\begin{document}
\pagestyle{kpage}
\chapterstyle{kchap}
\chapter{Thoreau}
\begin{multicols*}{2}
In 1862, Henry David Thoreau published a short piece called ``Walking'' in which he said:
\epigraph{I have met with but one or two persons in the course of my life who understood the art of Walking, that is of taking walks—who had a genius, so to speak, for \textit{sauntering}}{\textit{Atlantic Monthly}, 1862}
He goes on to give a long (and possibly incorrect) definition of the word \textit{saunter}, but his point is still valid: we rarely, if ever, just saunter any more. All our motion is with purpose, with intent; we are determined to get somewhere else from here and to do something. We do not know how to just wander around.
\end{multicols*}
\end{document}