Simple Recipes for First-Time-Away-From-Home Cooks
Author
LianTze Lim
Last Updated
5 years ago
License
Creative Commons CC BY 4.0
Abstract
Example/Template for a simple recipe booklet, with markdown!
Example/Template for a simple recipe booklet, with markdown!
\documentclass[a4paper]{article}
%% These two lines are only needed for providing LARGE base
%% font sizes-- because each page will need to be scaled
%% to 1/8 when made into a pocketmod booklet/zine!
\usepackage{scrextend}
\changefontsizes[25pt]{21pt}
\usepackage{simple-recipe}
\usepackage{textcomp}
%% Three themes for now; add your own! Look in
%% rc-classic.sty and rc-modern.sty to see examples.
%% These themes use free fonts available on;
%% Ubuntu systems. If you're on Win/Mac and get
%% "font not found" errors, you can search for
%% them on the Web and install them to your
%% operating system's font folder.
\recipestyle{classic}
% \recipestyle{modern}
% \recipestyle{scribbly}
%% Treat each "page" of the booklet as a full-sized paper first
\usepackage[margin=0.75in,includefoot,bottom=0.3in,footskip=2em]{geometry}
%% ...and _then_ make it into a pocketmod booklet! (It may help to comment out this line while you're working on the contents, and only enable it when you're ready to really turn your doc into a pocketmod booklet
\usepackage[showmarks]{pocketmod}
\title{Simple Recipes for First-Time-Away-From-Home Cooks}
\author{Overleaf staff share their fav quick recipes}
\date{}
\begin{document}
\maketitle
\clearpage
\markdownInput{SpanishOmelette.md}
\clearpage
\markdownInput{BaconTwists.md}
\clearpage
\markdownInput{Bolognese.md}
\clearpage
\thispagestyle{empty}
\markdownInput{backcover.md}
\end{document}