当我使用包时algorithm2e
,我发现算法可以很容易地编号,但程序却不能。我怎样才能对程序进行编号algorithm2e
,如程序 1、程序 2、...
%% 程序 1
\开始{程序}
...
\结束{程序}
%% 程序 2
\开始{程序}
...
\结束{程序}
答案1
环境procedure
是环境的一种特殊形式algorithm
。将选项传递procnumbered
给algorithm2e
使用与算法相同的计数器的数字程序:
\documentclass{article}
\usepackage[procnumbered,ruled]{algorithm2e}
\begin{document}
\begin{procedure}
\caption{myproc()}
This is a procedure
\end{procedure}
\begin{algorithm}
\caption{My algorithm}
This is a procedure
\end{algorithm}
\end{document}