When using the scrreprt class I can use the option listof=entryprefix to have "Abbildung" stand in front of the numbering in my list of figures for example. With the commands
\renewcommand*\listoflofentryname{Abb.}
\renewcommand*\listoflotentryname{Tab.}
I can change that to "Abb." for the list of figures and "Tab." for the list of tables respectively.
Now I declare a new float environment with
\usepackage{newfloat}
\DeclareFloatingEnvironment[ % neue Float Umgebung für Gleichungen
fileext=loe,
listname={Formelverzeichnis},
name=Formel,
placement=h,
within=chapter,
chapterlistsgaps=off,
]{eq}
and add a list of equations with
\listofeqs
Is there a similar way to have "Formel" stand in front of the equations numbering in the list of equations? Or might there be a simpler way without having to declare a new float environment e.g.?
Edit: in the newfloat documentation there is an example (page 5) which uses the tocloft package, but this package seems to have some problems with the KOMA classes and without it the declaration produces an error and stops the compilation.
MWE:
\documentclass[
listof=totoc, % "List of" in toc
listof=entryprefix, % "List of" with entryprefix
]{scrreprt}
\usepackage[british, ngerman]{babel}
\usepackage{booktabs}
\usepackage{amsmath}
\usepackage{newfloat}
\DeclareFloatingEnvironment[ % new Float environment for equations
fileext=loe,
listname={Formelverzeichnis},
name=Formel,
placement=h,
within=chapter,
chapterlistsgaps=off,
]{eq}
\renewcommand*\listoflotentryname{Tab.} % change entryprefix for tables
\begin{document}
\tableofcontents
\listoftables
\listofeqs % List of Equations
\chapter{Test}
\begin{table}[h]
\centering
\caption[Testtabelle (Verzeichnis)]{Testtabelle}
\begin{tabular}{ll}
a & b \\
c & d \\
e & f
\end{tabular}
\end{table}
\begin{eq} % Testformel
\begin{subequations}
\begin{align}
a &= b \
b &= c.
\end{align}
\end{subequations}
\caption[Testformel (Verzeichnis)]{Testformel}
\end{eq}
\end{document}

I adapted your answer without the use of the newfloat package and it works like a charm!
– Lukas Jun 27 '21 at 21:29