[Tex/LaTex] How to add a blank line in the algorithmic environment

algorithmspseudocode

I'm trying to learn the algorithmic package for typesetting pseudocode. One problem I'm running into is that I can't figure out how to insert blank lines, to separate blocks of code. The usual \\ or starting a new paragraph doesn't seem to work. How can I insert blank lines in in the algorithmic environment?

Best Answer

If you want the empty line to be numbered, just insert

\STATE

on this line.

If you want an unnumbered empty line, insert

\item[]

instead.