我正在使用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
。我是否遗漏了其他类型的引用?
提前致谢!