选项 vlined with 算法

选项 vlined with 算法

请问是否可以添加以下选项:

[vlined] 

随包

\usepackage{algorithm} 
\usepackage{algorithmic}

这是我的例子:

 \usepackage{algorithm}
 \usepackage{algorithmic}
 \begin{document}
 \begin{algorithm}[H]
 \caption{My algo}
 \begin{algorithmic}[1]
 \WHILE{condition}
 \STATE instruction 1
 \STATE instruction 2
 \ENDWHILE
 \end{algorithmic}
 \end{algorithm}
 \end{document}

我想用一条线将 while 连接到 \ENDWHILE,可以吗?

答案1

vlined选项似乎是在algorithm2e包中定义的,这是一个用于布局算法的不同包。它还定义了您在之前的问题中使用的大小写混合命令,例如\Begin\For。也许您打算使用该包而不是algorithmic

相关内容