I'm using the recipecard class to make some cards for my recipe box. However, I would like to make the recipe instructions a numbered list. I have tried using enumerate, however although a list is created, there are no numbers. Also, with the way I am using the class at the moment, 'Cook Time' is outside the recipe card box. I would ideally like the Cook Time and Temperature to appear in the bottom left and bottom right of the card, respectively. Google is not being very helpful, so I'd really appreciate some guidance!
Here is my MWE. I am compiling using PDFLaTeX.
Code: Select all
\documentclass[fourbysix]{recipecard}
\begin{document}
\ingredient{plums}
\ingredient{4 cups sugar}
\changeingrdlistnum{3}
\begin{recipe}{Plum Cordial}{~ one litre}
\begin{enumerate}
\item Instruction one.
\item Instruction two.
\end{enumerate}
\cookingtime{20 minutes}
\cooktemp{0}
\end{recipe}
\end{document}
Thanks for your help!
Elsa.