将 while 改为 repeat ... till

将 while 改为 repeat ... till

如果我有这个脚本:

\documentclass[conference]{IEEEtran}
\usepackage{algorithmicx}
\usepackage{algorithm}
\usepackage{algpseudocode}

\begin{algorithmic}
  \While{$x = y$}
    \State Something
  \EndWhile
\end{algorithmic}

我想改成whilerepeat .. until我试过了\Repeat .. \Until,但没用。我该怎么做?谢谢

答案1

这是软件包文档的一个片段 http://tug.ctan.org/macros/latex/contrib/algorithmicx/algorithmicx.pdf(第 6 页)。

\begin{algorithmic}[1]
    \Repeat
    \Comment{forever}
    \State this\Until{you die.}
\end{algorithmic}

在此处输入图片描述

相关内容