Hallo zusammen,

ich versuche seit einer Weile im Verzeichnis der Algorithmen vor die entsprechende Nummerierung das Wort 'Algorithmus' zu bekommen. Leider ohne Erfolg.
Wer weiss Rat?

Gruß,
Stefan

Beispiel:
Code:
\documentclass{scrreprt}

\usepackage{algorithmic}
\usepackage{algorithm}
%\numberwithin{algorithm}{chapter}  % <--- chapter, section etc. depending on what is required
\newcommand{\theHalgorithm}{\arabic{algorithm}}
\renewcommand{\listalgorithmname}{Algorithmenverzeichnis}
\floatname{algorithm}{Algorithmus}
%\renewcommand{\thealgorithmic}{Algorithmus}

\begin{document}
\listofalgorithms  

\begin{algorithm}                      % enter the algorithm environment
\caption{Calculate $y = x^n$}          % give the algorithm a caption
\label{alg1}                           % and a label for \ref{} commands later in the document
\begin{algorithmic}[1]                    % enter the algorithmic environment
\FOR{$i$ = 1 to 10} 
\STATE $i \leftarrow i + 1$
\ENDFOR
\end{algorithmic}
\end{algorithm}

\end{document}