如何排除 \listofalgorithms 中的某些算法

如何排除 \listofalgorithms 中的某些算法

我尝试过,\captionsetup{list=no}但它不适用于算法列表。有什么想法吗?我正在使用将算法拆分成几页,algorithm2e并且不想显示拆分算法的标题。

\begin{algorithm}[ht]
\caption*{MyAlgorithm}
\captionsetup{list=no}
\label{alg:myalg2}
\end{algorithm}

现在显示的点没有名字,我不想去掉这些点。

谢谢。

答案1

而不是\captionsetup,添加\renewcommand{\addcontentsline}[3]{} 使用\caption*。这将停用写入 ToC 功能。由于它是在组(环境algorithm)内执行的,因此更改将是本地的。

相关内容