Home > Blockchain >  Latex algorithm cross-column typesetting
Latex algorithm cross-column typesetting

Time:05-17

How to use latex to implement the multi-column algorithm in the link below, thank you very much. multi-column algorithm

CodePudding user response:

Thanks to your suggestions, I finally solved it using "\begin{multicols}{n}" and "\end{multicols}".

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