7

I'm using Algorithm2e and want a loop with no intial condition and no ending condition. Using Algorithmic, this can be achieved with \Loop ... \EndLoop, but I cannot find a similar loop for Algorithm2e. How do I do this in Algorithm2e?

1
  • It's not very clear; can you make an example? Commented Dec 4, 2013 at 22:06

1 Answer 1

10

Something like this, with empty condition?

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

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

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

enter image description here

1
  • 3
    Or perhaps more elegantly \SetKwBlock{Loop}{Loop}{EndLoop} Commented Sep 6, 2018 at 0:46

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.