ich schreibe gerade an meiner Masterthesis und habe das Problem das mein Formelverzeichnis nicht richtig funktioniert. Während die Nummerierung der Formeln im Dokument mit 1 startet, startet sie im Formelverzeichnis mit 0, daher sind alle Formeln verschoben. Ich habe das Problem mal in folgendem Beispiel so stark wie möglich reduziert:
\documentclass{scrreprt}
\usepackage{amsmath, amssymb, amstext}
\usepackage[titles]{tocloft}
\usepackage[ngerman]{babel}
\begin{document}
\newcommand{\listequationsname}{Formelverzeichnis}
\newlistof{equations}{equ}{\listequationsname}
\newcommand{\equations}[1]{\addcontentsline{equ}{equations}{%
\protect\numberline{Formel\space\theequation:}~~~~~~~~~~~~~~#1}}
\listofequations \addcontentsline{toc}{chapter}{{ } Formelverzeichnis}
\chapter{Kapitel}
\begin{align}
&a + b = c \equations{Formel 1} \\[0.25cm]
&d = e - f \equations{Formel 2}
\end{align}
\end{document}
Grüße
Miney
