如何更改算法的标题

如何更改算法的标题
{\tiny
\restylealgo{boxed}
\begin{algorithm}
%\centering{
\SetLine
\KwIn{$A$. }

\caption{}
%}
\label{algo2}
\end{algorithm}
}

标题中写着“算法 2:”
可能仅仅是算法 2 吗?

答案1

使用

\SetAlgoCaptionSeparator{}

平均能量损失

\documentclass{article}
\usepackage{algorithm2e}

\begin{document}

{\tiny
\RestyleAlgo{boxed}
\SetAlgoCaptionSeparator{}
\begin{algorithm}
%\centering{
%\SetLine
\KwIn{$A$. }

\caption{}
%}
\label{algo2}
\end{algorithm}
}
\end{document} 

在此处输入图片描述

顺便说一句:是的\RestyleAlgo,不是的\restylealgo,除非你有一个非常旧的版本algorithm2e

相关内容