Convert Simple Horseradish Aioli to TeX

And add to the Sauces section

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2016-06-27 10:25:51 -04:00
parent 7f4e54728e
commit 24d00ff825
5 changed files with 47 additions and 1 deletions

View File

@ -1,5 +1,5 @@
dirs := breakfast grains animals plants drinks
dirs := breakfast grains animals plants sauces drinks
pdfs := $(foreach dir, $(dirs), $(dir)/$(dir).pdf)
all:

View File

@ -68,6 +68,15 @@
\end{multicols}
}
\newenvironment{ingredientsSmall}
{
\section{Ingredients}
\begin{itemize}
}
{
\end{itemize}
}
\newcommand{\addIngredient}[2] {\large{\item{\textbf{#1} #2}}}
\newcommand{\addIngredientName}[1] {\large{\item{#1}}}

7
sauces/0_title.tex Normal file
View File

@ -0,0 +1,7 @@
%
% Copyright 2016 (c) Anna Schumaker.
%
\documentclass{../titlepage}
\begin{document}
\setTitle{Sauces}
\end{document}

11
sauces/Makefile Normal file
View File

@ -0,0 +1,11 @@
SOURCES = $(sort $(wildcard *.tex))
OBJECTS = $(patsubst %.tex, %.pdf, $(SOURCES))
all:
latexmk -pdf $(SOURCES)
pdfjoin -o sauces.pdf $(OBJECTS)
clean:
latexmk -C
rm sauces.pdf

View File

@ -0,0 +1,19 @@
%
% Copyright 2016 (c) Anna Schumaker.
%
\documentclass{../recipe}
\recipeName{Simple Horseradish Aioli}
\recipeSourceBook{Cooking Light: The Essential Dinner Tonight Cookbook}{321}
\begin{document}
\begin{ingredientsSmall}
\addIngredient{6 tablespoons}{mayonnaise}
\addIngredient{6 teaspoons}{prepared horseradish}
\addIngredient{3 teaspoons}{bottled minced garlic}
\end{ingredientsSmall}
\begin{steps}
\addStep{Combine \ingredient{all ingredients} in a small bowl. Mix well.}
\end{steps}
\end{document}