I am writing an algorithm and I would like to name the function with some lowercase letters. I tried the \lowercase command as follows but it did't work
Code: Select all
\begin{algorithm}\caption{my algorithm}\label{myAlgorithm}
\begin{algorithmic}[1]
\Function{This\lowercase{and}That}
\If{a}
\State $b \gets 1$
\EndIf
\EndFunction
\end{algorithmic}
\end{algorithm}