Compare commits

..

2 Commits

Author SHA1 Message Date
15d029b8b0 Added cover file 2024-06-22 12:15:57 -04:00
4859400974 Modified ignore file 2024-06-22 12:15:31 -04:00
2 changed files with 120 additions and 0 deletions

3
.gitignore vendored
View File

@ -284,3 +284,6 @@ TSWLatexianTemp*
# Uncomment the next line to have this generated file ignored.
#*Notes.bib
## Added by me
/build/*
/build

117
cover-003.tex Normal file
View File

@ -0,0 +1,117 @@
\documentclass[letter, landscape]{report}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[nott]{kpfonts}
\usepackage{multicol} % Include two- or three-column sections
\usepackage{ninecolors}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\graphicspath{{images/}} % Where are our images?
\raggedbottom % Don't force text to fill page
\raggedright % Don't justify lines
\raggedcolumns
\setlength{\columnsep}{40mm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Page Set-up %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{geometry}
\geometry{
margin=20mm,
}
%% Adjust the top and bottom margins
\addtolength{\topmargin}{0.4in}
\addtolength{\textheight}{-0.75in}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Set up our headers and footers %%%%%%%%%%%%%%%%%%%%%%
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\cfoot{} % footer and header rules; no page number
\renewcommand{\headrulewidth}{0mm}
\renewcommand{\footrulewidth}{3mm}
\renewcommand{\footrule}{\hbox to \headwidth{\color{green9}\leaders\hrule height \footrulewidth\hfill}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Let's get it started in here %%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\begin{multicols}{2}
%\vspace*{30mm}
Some sample text
\columnbreak
\vspace*{20mm}
\begingroup\centering
{\fontsize{18}{60}\selectfont Dude With a Fork}
\bigskip
\includegraphics[scale=0.18]{fork}
\bigskip
{\fontsize{30}{28}\selectfont \textbf{Seasoning Mixes}}
\bigskip
\begin{large}
A Mini Cookbook
\end{large}
\vspace{50mm}
\textsc{First Edition\\June 2024}
\endgroup
\end{multicols}
\pagebreak
\begin{multicols}{2}
All contents \copyright2024 Kenneth John Odle
\medskip
Please be sure to visit my website at \texttt{dudewithafork.com}
\medskip
You can also watch my videos at \texttt{youtube.dudewithafork.com}
\medskip
You can also support me by joining me on Patreon at \texttt{https://www.patreon.com/dudewithafork} where you can get a discount code for anything I sell on etsy.
\columnbreak
\vspace*{30mm}
Thank you so much for buying my cookbook! By doing so, you're helping me to create more great content. I really appreciate it!
\end{multicols}
\end{document}