WPS中用Aurora写伪代码

WPS中用Aurora写伪代码

第一步

在Properties->Packages中添加

\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{amsmath}
\usepackage{setspace}
\renewcommand{\algorithmicrequire}{\textbf{Input:}}
\renewcommand{\algorithmicensure}{\textbf{Output:}}

第二步

代码如下:

\begin{algorithm}[H]
\setstretch{1.25}          %行间距为1.25
\setcounter{algorithm}{0}  %算法标号(此时为1)
\caption{algorithm name}   %算法名称
\begin{algorithmic}[1]     %行数为1的倍数时,体现行号
\Require{$\lambda$}        %输入
\Ensure{$\epsilon$}        %输出
\item $\alpha$
\item $\beta$
\While {A}                 %while语句
\State $B$
\State $C$
\If{A}                     %if语句
\State $B$
\State $C$
\Else {\ return}           %else语句
\EndIf
\EndWhile
\For {A}                   %for语句
\State $B$
\EndFor
\end{algorithmic} 
\end{algorithm}

第三步:

最终伪代码如下:
WPS中用Aurora写伪代码_第1张图片

你可能感兴趣的:(LaTeX)