[Tex/LaTex] How to avoid the bold version of the caption of the algorithm

algorithm2ecaptions

I am using algorithm2e package, but I want to remove Algorithm 1 in the figure and just say the name in my case as just appear only "The procedure". How we can do that?

\begin{algorithm}
\DontPrintSemicolon
a=1\;
b=2\;
c=2\;
\caption{The procedure}
\label{algo:sj2}
\end{algorithm}

enter image description here

Best Answer

I found the anaswer by my self thanks all. by adding \NoCaptionOfAlgo we can remove the name Algorithm1.

\begin{algorithm}
\DontPrintSemicolon
a=1\;
b=2\;
c=2\;
\NoCaptionOfAlgo
\caption{The procedure}
\label{algo:sj2}
\end{algorithm}

enter image description here