I first tried this:
\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}
But the font in the call to procedure-f (in the code of procedure-g) changes. I would have liked, for example, that the procedure call in procedure-g be in the same font as it was used in name of the procedure in procedure-f. Maybe there's a macro that just applies the same font?
\textsc{procedure-f}... – Werner Jan 28 '19 at 20:44