如何将算法标题更改为其他内容?

如何将算法标题更改为其他内容?

在 latex 中使用 \begin{algorithm} 编写算法时,我们会看到如下内容:

在此处输入图片描述

有没有办法用其他东西来代替“算法”,比如“程序”?

编辑

我尝试过类似的说法这个帖子

\renewcommand{\algorithmname}{Procedure}

但是我收到此错误: algorithmname Undifined

我的代码是这样的:

\documentclass[a4paper,12pt]{report}

\usepackage{algorithm}

\renewcommand{\algorithmname}{Procedure}

\begin{document}

\begin{latin}
\setstretch{1.0}
\begin{algorithm}
\caption{My algorithm}\label{euclid}

\begin{algorithmic}[1]
\Procedure{Building }{M}

\EndProcedure
\end{algorithmic}

\end{algorithm}

\end{latin}
\end{document}

答案1

\documentclass[a4paper,12pt]{report}
\usepackage{algorithm}
\floatname{algorithm}{Procedure}
\begin{document}
\begin{algorithm}
\caption{My algorithm}\label{euclid}
\end{algorithm}
\end{document}

相关内容