带有内联 if 和注释的额外行

带有内联 if 和注释的额外行

我正在用 algorithm2e 编写算法。

我想用 来执行内联 if 并且\lIf在同一行上使用 进行注释\Comment*

\documentclass{article}

\usepackage[vlined,boxed,linesnumbered]{algorithm2e}
\DontPrintSemicolon
\SetKwIF{If}{ElseIf}{Else}{if}{then}{else if}{else}{}
\SetKwComment{Comment}{}{}

\begin{document}

\begin{algorithm}[ht]
\lIf{true}{%
    foo \Comment*{bar}
}
\caption{Test}
\end{algorithm}

\end{document}

但它会产生一条不必要的线:

如何删除它?

相关内容