如何在调用过程时获得与过程定义中相同的字体?

如何在调用过程时获得与过程定义中相同的字体?

我首先尝试了这个:

\begin{algorithm}
\caption{Some algorithm}
\begin{algorithmic}[1]
\Procedure{procedure-f}{}
 ...
\EndProcedure
\end{algorithmic}
\end{algorithm}

\begin{algorithm}
\caption{Some other algorithm}
\begin{algorithmic}[1]
\Procedure{procedure-g}{}
  \State $x \gets \textbf{procedure-f}()$
\EndProcedure
\end{algorithmic}
\end{algorithm}

但是对过程 f 的调用(在过程 g 的代码中)的字体发生了变化。例如,我希望过程 g 中的过程调用使用与过程 f 中过程名称相同的字体。也许有一个宏只应用相同的字体?

相关内容