Algorithm2e 重命名 \listofalgorithms 标题

Algorithm2e 重命名 \listofalgorithms 标题

您能帮我将标题\listofalgorithms(“算法列表”)重命名为其他文本吗?我不知道该怎么做。

答案1

更新\listalgorithmcfname

在此处输入图片描述

\documentclass{article}

\usepackage{algorithm2e}

\renewcommand{\listalgorithmcfname}{List of Algorithmus}

\begin{document}

\listofalgorithms

\begin{algorithm}
  \caption{An algorithm.}
\end{algorithm}

\end{document}

答案2

另一个选择是使用提供的命令\SetAlgorithmName,它接受 3 个参数:算法的新名称、要使用的名称\autoref以及要在算法列表中使用的名称。

\documentclass{article}

\usepackage{algorithm2e}

\SetAlgorithmName{Algorithmus}{Al.}{List of Algorithmi}

\begin{document}

\listofalgorithms

\begin{algorithm}
  \caption{An algorithm.}
\end{algorithm}

\end{document}

相关内容