Convert Baked Peppers and Onions recipe to TeX

And add it in the Plants section.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2016-06-27 09:36:24 -04:00
parent cd1fff16c8
commit 653ee7d495
4 changed files with 57 additions and 1 deletions

View File

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

7
plants/0_title.tex Normal file
View File

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

11
plants/Makefile Normal file
View File

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

View File

@ -0,0 +1,38 @@
%
% Copyright 2016 (c) Anna Schumaker.
%
\documentclass{../recipe}
\recipeName{Baked Peppers and Onions}
\recipeServes{5}
\recipeServingSize{1\twothirds cups}
\recipeSourceBook{The Everything Vegetarian Cookbook}{213}
\begin{document}
\begin{ingredients}
\addIngredientName{Cooking spray}
\addIngredient{2 medium}{green bell peppers}
\addIngredient{2 medium}{red bell peppers}
\addIngredient{4 medium}{red potatoes}
\addIngredient{1 large}{yellow onion, peeled}
\addIngredient{\third cup}{extra-virgin olive oil}
\addIngredientName{Ground black pepper}
\end{ingredients}
\begin{steps}
\addStep{Coat a \textbf{13 x 9 -- inch} baking dish with
\ingredient{cooking spray} and preheat oven to \textbf{\ftemp{425}}.}
\addStep{Cut \ingredient{peppers}, \ingredient{potatoes}, and
\ingredient{onion} into \textbf{1 -- 2 inch}. Mix together and place
in the baking dish.}
\addStep{Pour the \ingredient{olive oil} over the \ingredient{vegetables}
and generously season with \ingredient{black pepper}.}
\addStep{Bake for \textbf{30 minutes}, or until potatoes are tender.}
\end{steps}
\addSuggestion{Side}{Rice}
\addReheating{Bake \textbf{1\twothirds cups}
\ingredient{Baked Peppers and Onion} at \textbf{\ftemp{425}} for
\textbf{20 minutes}.}
\end{document}