如何可视化代码缩进?我想要的是沿着缩进画一条垂直线。由于示例比解释更容易展示,您可以在这张纸(第 2 页)
答案1
使用“algorithm2e”包的一个简短示例如下所示:
\documentclass{article}
\usepackage{algorithm2e}
\begin{document}
\SetAlgoLined
\begin{procedure}
\Switch{the value of T}{
\uCase{a value}{
do this\;
do that\;
}
\lCase{another value}{one line}\;
\Case{last value}{
do this\;
break\;
}
\Other{
for the other values\;
do that\;
}
}
\end{procedure}
\end{document}