这种风格的伪代码在 Latex 中是如何编写的?

这种风格的伪代码在 Latex 中是如何编写的?

在此处输入图片描述我想使用算法包创建一个算法。2]2

答案1

代码直接复制自https://www.overleaf.com/learn/latex/Algorithms

\documentclass{article}
\usepackage{algorithm2e}
\begin{document}
\begin{algorithm}
$i\gets 10$\;
\eIf{$i\geq 5$}
{
    $i\gets i-1$\;
}{
    \If{$i\leq 3$}
    {
        $i\gets i+2$\;
    }
}
\end{algorithm}

\end{document}

带语法高亮的伪代码

相关内容