使用 Algorithm2e 的无限循环

使用 Algorithm2e 的无限循环

我正在使用Algorithm2e并想要一个没有初始条件和结束条件的循环。使用Algorithmic,这可以通过 实现\Loop ... \EndLoop,但我找不到 的类似循环Algorithm2e。我如何在 中做到这一点Algorithm2e

答案1

像这样,处于空的状态?

\documentclass{article}
\usepackage{algorithm2e}
\begin{document}
\thispagestyle{empty}

\SetKwFor{Loop}{Loop}{}{EndLoop}

\begin{algorithm}
  \Loop{}{Statement\;Statement\;}
\end{algorithm}
\end{document}

在此处输入图片描述

相关内容