重命名 beamer 中 algorithm2e 的“floatname”

重命名 beamer 中 algorithm2e 的“floatname”

algorithm2e我怎样才能重命名由设计的算法的“floatname”beamer

\documentclass{beamer}
\usepackage[ruled]{algorithm2e}

\begin{document}
\begin{frame}
\begin{algorithm}[H]
%\floatname{algorithm}{changeThis}
\caption{title}
do something\;
\end{algorithm}
\end{frame}
\end{document}

答案1

要更改算法的名称,algorithm2e提供命令\SetAlgorithmName允许您调整标题、参考文献和可选算法列表中显示的名称。

\documentclass{beamer}
\usepackage[ruled]{algorithm2e}
\SetAlgorithmName{algorithmname}{algorithmautorefname}{list of algorithms name}
\begin{document}
\begin{frame}
\begin{algorithm}[H]
\caption{title}
do something\;
\end{algorithm}
\end{frame}
\end{document}

相关内容