使用algorithmicx
可以很容易地打开或关闭行号或对每 n 行进行编号。使用此 MWE(取自文档)
\documentclass{article}
\usepackage{algpseudocode}
\usepackage{algorithm}
\begin{document}
\begin{algorithm}[H]
\caption{Euclide's algorithm}\label{euclid}
\begin{algorithmic}[5]
\Procedure{Euclide}{$a,b$}\Comment{The g.c.d. of a and b}
\State $r\gets a\bmod b$
\While{$r\not=0$}\Comment{We have the answer if r is 0}
\State $a\gets b$
\State $b\gets r$
\State $r\gets a\bmod b$
\EndWhile\label{euclidendwhile}
\State \Return $b$\Comment{The gcd is b}
\EndProcedure
\end{algorithmic}
\end{algorithm}
\end{document}
在此示例中,第一个编号行是第 5 行。有没有办法打开第一行的编号?
后续问题是,是否可以在任意行上转换编号?
答案1
您必须更新特定的宏来更改打印条件:
\documentclass{article}
\usepackage{algpseudocode,algorithm}
\makeatletter
\def\ALG@step%
{%
\stepcounter{ALG@line}%
\stepcounter{ALG@rem}%
\ifnum\value{ALG@line}=1
% Print line number if it is 1
\alglinenumber{\arabic{ALG@line}}%
\else\ifnum\value{ALG@rem}=\ALG@numberfreq
% Print line number if the ALG@rem = \ALG@numberfreq
\setcounter{ALG@rem}{0}\alglinenumber{\arabic{ALG@line}}%
\fi\fi
}%
\makeatother
\begin{document}
\begin{algorithm}[H]
\caption{Euclide's algorithm}\label{euclid}
\begin{algorithmic}[5]
\Procedure{Euclide}{$a,b$}\Comment{The g.c.d.\ of~$a$ and~$b$}
\State $r \gets a \bmod b$
\While{$r \neq 0$}\Comment{We have the answer if~$r$ is~$0$}
\State $a \gets b$
\State $b \gets r$
\State $r \gets a \bmod b$
\EndWhile\label{euclidendwhile}
\State \Return $b$\Comment{The g.c.d.\ is~$b$}
\EndProcedure
\end{algorithmic}
\end{algorithm}
\end{document}
调整\ALG@step
插入一个条件来检查行号是否为 1,并进行相应的打印。
一般来说,可以在任意行上打开编号,但代码并未为此设置。