删除美食包中的步骤编号

删除美食包中的步骤编号

我想从菜系包中删除步骤编号。这就是1以下代码中出现在食材左侧的:

\documentclass[]{article}

\usepackage[nonumber]{cuisine}

\begin{document}

\begin{recipe}{Name}{4}{\fr12 hour}

\ing[5]{units}{something}

STEP 1

STEP 2 

...

\end{recipe}

\end{document}

我尝试修改包代码并将步数宽度设置为 0,但没有成功。有人可以帮忙吗?

答案1

您需要使用xpatch

\documentclass[]{article}

\usepackage[nonumber]{cuisine}
\usepackage{xpatch}
\makeatletter
\xpatchcmd{\Displ@ySt@p}{\arabic{st@pnumber}}{}{}{}
\makeatother
\begin{document}
\begin{recipe}{Name}{4}{\fr12 hour}
\ing[5]{units}{something}

STEP 1

STEP 2

...

\end{recipe}

\end{document}

在此处输入图片描述

相关内容