请问,我可以在 Latex 中使用什么包来获得图中的算法模型?
答案1
正如评论中提到的那样,algorithm2e
包为您提供所需的布局:
\documentclass{article}
\usepackage[ruled]{algorithm2e}
\begin{document}
\begin{algorithm}
\Begin{
$V \longleftarrow U$\;
$S \longleftarrow \emptyset$\;
\For{$x\in X$}{
$NbSuccInS(x) \longleftarrow 0$\;
$NbPredInMin(x) \longleftarrow 0$\;
$NbPredNotInMin(x) \longleftarrow |ImPred(x)|$\;
}
}
\caption{My Algorithm}
\label{alg:test}
\end{algorithm}
\end{document}