Latex算法跨栏排版

Latex algorithm cross-column typesetting

下面link如何使用latex实现多列算法,非常感谢。 multi-column algorithm

感谢您的建议,我终于用“\begin{multicols}{n}”和“\end{multicols}”解决了这个问题。

\usepackage{multicol}
\begin{algorithm*}[h]
\begin{multicols}{3} //three columns
// your code
}
\end{multicols}
\end{algorithm*}