Folgenden Code verwende ich dafür:
\renewcommand{\lstlistlistingname}{Liste der Algorithmen} \lstlistoflistings \addcontentsline{toc}{section}{Algorithmus}
\renewcommand{\cfttabpresnum}{Tab. }
Geht das irgendwie?
Gruß Jonas
\renewcommand{\lstlistlistingname}{Liste der Algorithmen} \lstlistoflistings \addcontentsline{toc}{section}{Algorithmus}
\renewcommand{\cfttabpresnum}{Tab. }
\documentclass[12pt,a4paper,listof=totoc,listof=entryprefix]{scrartcl} \usepackage{scrhack} \usepackage{listings} \newcommand*{\listoflolentryname}{Listing} %\renewcommand*{\listoflofentryname}{Abb.} %\AfterTOCHead[lof]{\renewcommand*\autodot{:}} \begin{document} \tableofcontents \lstlistoflistings \listoffigures \section{Test} \begin{lstlisting}[caption=Testlisting] test() \end{lstlisting} \begin{figure}\centering \rule{1cm}{1cm} \caption{Testabbildung} \end{figure} \end{document}