如何从 algorithm2e 中的算法中“调用”过程?

如何从 algorithm2e 中的算法中“调用”过程?

我正在使用algorithm2e,我写了一个Procedure和一个Algorithm。我想在算法中调用该过程。我只需要引用该过程即可\label{proc:myproc}

\begin{procedure}
\DontPrintSemicolon
\tcc*[l]{Procedure}
 \SetAlgoLined
 \KwIn{Input}
 \KwOut{Output}
Initial step 1\;
Initial step 2\;
    \ForEach{}{
    \ForEach{}{
    \tcc*[l]{Do this}\;
    }
    }
%
\caption{Compute this()} \label{proc:myproc}
\end{procedure}

因此我可以在算法中执行此操作:\ref{proc:myproc}。但是此引用给出了纯文本Compute this。我是否遗漏了其他类型的引用?

提前致谢!

相关内容