I am using the algorithm2e package to generate pseudocode for a paper. The journal requires the format of "S1 Pseudocode", "S2 Pseudocode", etc. However, I am only able to generate the format as "Pseudocode S 1" based on the line \SetAlgorithmName{Pseudocode S}{}. Below is the minimum working example:
\documentclass[parskip=full]{bmcart}
\usepackage[lined]{algorithm2e}
\usepackage{geometry}
\begin{document}
\begin{algorithm}[H]
\SetAlgorithmName{Pseudocode S}{}
\caption{Pseudocode for my algorithm}
\end{algorithm}
\end{document}
How can I update the label to indicate "S1 Pseudocode" (instead of "Pseudocode S 1")? Presumably this would be changed with the \SetAlgorithmName command. Any advice greatly appreciated!
