Converted lyrics issues to include templates
This commit is contained in:
parent
c71ba102b0
commit
d643ae047b
@ -1,176 +1,53 @@
|
|||||||
\documentclass[twoside]{report}
|
\documentclass[twoside,9pt]{extreport}
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
%% Packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
\usepackage[utf8]{inputenc}
|
|
||||||
\usepackage[T1]{fontenc}
|
|
||||||
\usepackage{float}
|
|
||||||
\usepackage{verse}
|
|
||||||
|
|
||||||
|
|
||||||
|
\input{include/packages}
|
||||||
|
\input{include/commands}
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
%% Fonts %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%% Variable %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
%% Choose either kpfonts or fourier
|
\def\ktitle{ThIs Articulate Conception} % Title of this issue (a line from one of the songs on the album)
|
||||||
% \usepackage[nott]{kpfonts}
|
\def\kissue{001} % Issue number ix XXX format
|
||||||
\usepackage{fourier}
|
\def\kpublish{October 2025} % Month and year of this issue
|
||||||
|
\def\kalbum{``Autoamerican''} % Title of Album
|
||||||
|
\def\kgroup{Blondie} % Band
|
||||||
% Delete any of the following that are not needed
|
\def\kalbumyear{1980} % Year of album release
|
||||||
\usepackage{graphicx}
|
\def\kalbumcolor{red9} % album dominant color; use ninecolors format
|
||||||
\usepackage{array}
|
|
||||||
\usepackage{multirow}
|
|
||||||
% \usepackage{gensymb} % Just for the degree symbol
|
|
||||||
% \usepackage{ccicons} % Creative Commons icons; now we can delete an image
|
|
||||||
\usepackage{lettrine} % Drop caps
|
|
||||||
\usepackage{wrapfig} % Let's wrap some images
|
|
||||||
% \usepackage{hanging} % For hanging indents in a script
|
|
||||||
% \usepackage{fancyvrb} % Use line numbers with code samples
|
|
||||||
% \usepackage{fvextra} % Break lines inside Verbatim environment:
|
|
||||||
\usepackage{enumitem} % Control spacing in lists
|
|
||||||
\usepackage{setspace} % Better control over line-spacing
|
|
||||||
\usepackage{nicefrac} % Use nice fractions
|
|
||||||
\usepackage[bottom]{footmisc} % Keep the footnotes at the bottom of the page
|
|
||||||
\usepackage{tabto} % Use tab stops when we need to (especially in footnotes)
|
|
||||||
\usepackage{microtype} % Make things neater.
|
|
||||||
% \usepackage{tabularray} % Easy tables
|
|
||||||
\usepackage[]{footmisc}
|
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
%% Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%% Page Headers %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
\graphicspath{{images/}} % Where are our images?
|
|
||||||
\usepackage{multicol} % Include two- or three-column sections
|
|
||||||
\counterwithout{footnote}{chapter} % Stop resetting the footnote count after each chapter
|
|
||||||
% \NumTabs{18} % Define 18 tab stops (at 1/4" intervals) [tabto package]
|
|
||||||
\raggedbottom % Don't force text to fill page
|
|
||||||
\raggedright
|
|
||||||
\setlength{\belowcaptionskip}{4pt} % Adjust space between caption and figure
|
|
||||||
\renewcommand*\contentsname{In This Issue…} % Change the name of the TOC
|
|
||||||
\newcommand{\attrib}[1]{\nopagebreak{\raggedleft\footnotesize #1\par}} % Add attributions to verse environment
|
|
||||||
\setlength{\vgap}{2em}
|
|
||||||
\setlength{\vindent}{2em}
|
|
||||||
|
|
||||||
%% Redefine the verse environment
|
|
||||||
\let\oldverse\verse
|
|
||||||
\def\verse{\oldverse\vspace{2em}\itshape}
|
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
%% Document Setup%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
\usepackage{geometry}
|
|
||||||
\geometry{
|
|
||||||
paperheight=8.5in,
|
|
||||||
paperwidth=5.5in,
|
|
||||||
margin=12mm,
|
|
||||||
% a5paper % Comment out for half-letter paper
|
|
||||||
}
|
|
||||||
|
|
||||||
\addtolength{\topmargin}{10mm} % Adjust and bottom margin
|
|
||||||
\addtolength{\textheight}{-20mm} % Adjust the bottom margin
|
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
%% Page Headers%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
%% Adjust the TITLE as necessary
|
%% Adjust the TITLE as necessary
|
||||||
\usepackage{fancyhdr}
|
\usepackage{fancyhdr}
|
||||||
\pagestyle{fancy}
|
\pagestyle{fancy}
|
||||||
\fancyhf{}
|
\fancyhf{}
|
||||||
\fancyhead[LE,RO]{\textit{Euterpe}}
|
\fancyhead[RO]{\textit{Euterpe}}
|
||||||
\fancyhead[RE,LO]{Issue \#001}
|
\fancyhead[LE]{\textit{\ktitle{}}}
|
||||||
|
\fancyhead[RE,LO]{Issue \#\kissue{}}
|
||||||
\cfoot{Page \thepage}
|
\cfoot{Page \thepage}
|
||||||
\renewcommand{\footrulewidth}{0.5pt}
|
\renewcommand{\footrulewidth}{0.5pt}
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
%% Chapter Title Spacing %%%%%%%%%%%%%%%%%%%%
|
|
||||||
\usepackage{titlesec}
|
|
||||||
\titleformat{\chapter}[display]
|
|
||||||
{\normalfont\huge\bfseries}
|
|
||||||
{\chaptertitlename\ \thechapter}
|
|
||||||
{20pt}
|
|
||||||
{\Huge}
|
|
||||||
\titlespacing*{\chapter}{0pt}{0pt}{10pt}
|
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
%% Custom Macros %%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
|
|
||||||
% Make a nice border and box for the tops of our examples
|
|
||||||
\newcommand\klab[3]{\vspace{#1}\noindent{}\hrulefill\fbox{\texttt{~#2~}}\hrulefill\vspace{#3}}
|
|
||||||
|
|
||||||
% Add an \hrule with space above and below
|
|
||||||
\newcommand\krule[2]{\vspace{#1}\hrule\vspace{#2}}
|
|
||||||
|
|
||||||
% Make hrefs easier (must load package hyperref}
|
|
||||||
\newcommand\kref[2]{\href{#1}{{\texttt{#2}}}}
|
|
||||||
|
|
||||||
% Rotate text in tables easier
|
|
||||||
% https://tex.stackexchange.com/questions/89115/how-to-rotate-text-in-multirow-table
|
|
||||||
\newcommand\krot[3]{\parbox[t]{#1}{\multirow{#2}{*}{\rotatebox[origin=c]{90}{#3}}}}
|
|
||||||
|
|
||||||
% Make diversions easier (and uniform!)
|
|
||||||
\newcommand\kdivb[2]{
|
|
||||||
\medskip
|
|
||||||
\hrule
|
|
||||||
\medskip
|
|
||||||
\noindent{}\textbf{#1}
|
|
||||||
\vspace{#2mm}
|
|
||||||
\begin{multicols}{2}
|
|
||||||
}
|
|
||||||
|
|
||||||
\newcommand\kdive[1]{
|
|
||||||
\end{multicols}
|
|
||||||
\vspace{#1mm}
|
|
||||||
\hrule
|
|
||||||
\medskip
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
%% Include URLS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
% Be sure to load this package last
|
|
||||||
% [hidelinks option to hide big red box. Thanks /u/0b0101011001001011
|
|
||||||
\usepackage[hidelinks]{hyperref} % Inlcude URLs, but load this package last
|
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
||||||
%% Document Information %%%%%%%%%%%%%%%%%%%%%
|
|
||||||
%% Adjust the TITLE and SUBTITLE as necessary
|
|
||||||
\author{Kenneth John Odle}
|
|
||||||
\title{
|
|
||||||
{\Huge Euterpe (Lyrics only)} \\
|
|
||||||
\vspace{20mm}
|
|
||||||
{\footnotesize \textit{Autoamerican} by Blondie (1980) \\
|
|
||||||
\bigskip
|
|
||||||
% Typeset in \LaTeX{} \\
|
|
||||||
Issue \#001
|
|
||||||
}
|
|
||||||
}
|
|
||||||
\date{\begin{small}\today{}\end{small}}
|
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
%% Let's get it started %%%%%%%%%%%%%%%%%%%%%
|
%% Let's get it started %%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\maketitle
|
\input{include/titlepage-lyrics}
|
||||||
|
|
||||||
\section*{Impressum}
|
\section*{Impressum}
|
||||||
|
\pagestyle{plain}
|
||||||
|
|
||||||
|
% Set page style to Roman lowercase; reset page number
|
||||||
|
\pagenumbering{roman}
|
||||||
|
\setcounter{page}{2}
|
||||||
|
|
||||||
All contents \copyright2025 Kenneth John Odle
|
All contents \copyright2025 Kenneth John Odle
|
||||||
|
|
||||||
FYI, this is made in \LaTeX \,using the report document class. It then gets exported to a letterhalf (5.5 in x 8.5 in) pdf, which then gets made into a booklet using PDF Booklet, which you can find at
|
\input{include/impressum}
|
||||||
|
|
||||||
\kref{https://pdfbooklet.sourceforge.io/wordpress/}{https://pdfbooklet.sourceforge.io/wordpress/}
|
|
||||||
|
|
||||||
If you want to donate financial support for the creation of this zine (and all the hours of research that go into it), you can do so at
|
|
||||||
|
|
||||||
\kref{https://paypal.me/kjodle}{https://paypal.me/kjodle} (Thanks!)
|
|
||||||
|
|
||||||
|
|
||||||
\tableofcontents
|
\tableofcontents
|
||||||
|
|
||||||
|
\cleardoublepage % Change to 'clearpage' if TOC goes to an even number of pages
|
||||||
|
|
||||||
|
|
||||||
\chapter{The Songs}
|
\chapter{The Songs}
|
||||||
|
|
||||||
|
@ -69,6 +69,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%% For lyrics issues only %%%%%%%%%%%%%%%%%%%
|
||||||
|
%% Add attributions to verse environment %%%%
|
||||||
|
\newcommand{\attrib}[1]{\nopagebreak{\raggedleft\footnotesize #1\par}}
|
||||||
|
%% Define new lengths %%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%% Redefine the verse environment %%%%%%%%%%%
|
||||||
|
\let\oldverse\verse
|
||||||
|
\def\verse{\oldverse\vspace{2em}\itshape}
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
%% Include URLS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%% Include URLS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
% Be sure to load this package last
|
% Be sure to load this package last
|
||||||
|
@ -20,17 +20,10 @@
|
|||||||
\usepackage{graphicx}
|
\usepackage{graphicx}
|
||||||
\usepackage{array}
|
\usepackage{array}
|
||||||
\usepackage{multirow}
|
\usepackage{multirow}
|
||||||
% \usepackage{gensymb} % Just for the degree symbol
|
|
||||||
% \usepackage{ccicons} % Creative Commons icons; now we can delete an image
|
|
||||||
\usepackage{lettrine} % Drop caps
|
\usepackage{lettrine} % Drop caps
|
||||||
\usepackage{wrapfig} % Let's wrap some images
|
|
||||||
% \usepackage{hanging} % For hanging indents in a script
|
|
||||||
% \usepackage{fancyvrb} % Use line numbers with code samples
|
|
||||||
% \usepackage{fvextra} % Break lines inside Verbatim environment:
|
|
||||||
\usepackage{enumitem} % Control spacing in lists
|
\usepackage{enumitem} % Control spacing in lists
|
||||||
%\usepackage{setspace} % Better control over line-spacing
|
\usepackage{setspace} % Better control over line-spacing
|
||||||
%\usepackage{nicefrac} % Use nice fractions
|
\usepackage{nicefrac} % Use nice fractions
|
||||||
\usepackage[bottom]{footmisc} % Keep the footnotes at the bottom of the page
|
\usepackage[bottom]{footmisc} % Keep the footnotes at the bottom of the page
|
||||||
% \usepackage{tabto} % Use tab stops when we need to (especially in footnotes)
|
\usepackage[]{footmisc}
|
||||||
% \usepackage{tabularray} % Easy tables
|
\usepackage{verse}
|
||||||
%\usepackage[]{footmisc}
|
|
24
include/titlepage-lyrics.tex
Normal file
24
include/titlepage-lyrics.tex
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
\begin{titlepage}
|
||||||
|
\vspace*{15mm}
|
||||||
|
\fontsize{28}{42}\selectfont
|
||||||
|
\noindent{}\textit{\ktitle{}}
|
||||||
|
|
||||||
|
\NineColors{saturation=high}
|
||||||
|
\noindent{}{\color{\kalbumcolor}\rule{\textwidth}{5pt}}
|
||||||
|
|
||||||
|
\fontsize{12}{14}\selectfont
|
||||||
|
\noindent{}The lyrics of \kalbum{} by \kgroup{} (\kalbumyear{})
|
||||||
|
|
||||||
|
\vspace{20mm}
|
||||||
|
\begin{center}
|
||||||
|
\textit{Euterpe} zine — Issue \#\kissue{}
|
||||||
|
\vspace{10mm}
|
||||||
|
|
||||||
|
\fontsize{10}{18}\selectfont
|
||||||
|
Published \kpublish{}
|
||||||
|
|
||||||
|
Written by Kenneth John Odle
|
||||||
|
|
||||||
|
\kref{https://just13.click/euterpe}{just13.click/euterpe}
|
||||||
|
\end{center}
|
||||||
|
\end{titlepage}
|
Loading…
Reference in New Issue
Block a user