the-codex/001/codex-001.tex

61 lines
1.5 KiB
TeX
Raw Normal View History

\documentclass[10pt,twoside,letterpaper]{report}
2021-08-29 13:51:09 +00:00
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage{kpfonts}
2021-08-29 14:12:54 +00:00
2021-08-29 13:51:09 +00:00
% Let's set this as a half-letter sized sheet
% https://tex.stackexchange.com/questions/338789/how-to-set-paper-size-to-half-letter-5-5-x-8-5-in-in-amsbook
\usepackage{geometry}
\geometry{
paperheight=8.5in,
paperwidth=5.5in,
2021-08-29 14:50:55 +00:00
% heightrounded,
2021-08-29 13:51:09 +00:00
margin=0.5in
}
2021-08-29 14:12:54 +00:00
% Adjust the top and bottom margins
% http://kb.mit.edu/confluence/pages/viewpage.action?pageId=3907057
\addtolength{\topmargin}{0.5in}
\addtolength{\textheight}{-1in}
2021-08-29 14:12:54 +00:00
2021-08-29 13:51:09 +00:00
% Set the header style
% https://www.overleaf.com/learn/latex/Headers_and_footers
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{the codex}
\fancyhead[RE,LO]{Issue \#001}
\cfoot{Page \thepage}
\renewcommand{\footrulewidth}{1pt}
2021-08-29 14:12:54 +00:00
% Include sections and subsections in the TOC
2021-08-29 14:50:55 +00:00
% https://latex-tutorial.com/tutorials/table-of-contents/
2021-08-29 14:12:54 +00:00
\setcounter{tocdepth}{2}
2021-08-29 14:50:55 +00:00
% We will probably want some two- or three-column sections
\usepackage{multicol}
2021-08-29 13:51:09 +00:00
\usepackage{kantlipsum}
\author{Kenneth John Odle}
2021-08-29 14:50:55 +00:00
\title{{\Huge the codex}\\{\footnotesize Life with Linux — A Zine\\Typeset in \LaTeX}}
\date{2021\\ August}
2021-08-29 13:51:09 +00:00
\begin{document}
\maketitle
2021-08-29 14:12:54 +00:00
\tableofcontents
2021-08-29 13:51:09 +00:00
\chapter{Introduction}
2021-08-29 14:12:54 +00:00
This is just some dummy text
\section{Part, the First}
2021-08-29 13:51:09 +00:00
\kant
2021-08-29 14:12:54 +00:00
\section{Part, the Second}
2021-08-29 14:50:55 +00:00
\begin{multicols}{2}
[This is the beginning of our great submission.]
\kant
\end{multicols}
2021-08-29 13:51:09 +00:00
\kant
\end{document}