I have got a strange issue within my list of tables. I made these changes to the commands, which are actually from the template I received.
\renewcommand{\thefigure}{\arabic{section}-\arabic{figure}}
\makeatletter \@addtoreset{figure}{section} \makeatother
\renewcommand{\thetable}{\arabic{section}-\arabic{table}}
\makeatletter @addtoreset{table}{section} \makeatother
and changed settings at the appendix like the following:
\appendix
\addcontentsline{toc}{section}{Appendix}
\renewcommand{\thesubsection}{A.\arabic{subsection}}
\renewcommand{\thefigure}{\thesubsection-\arabic{figure}}
\renewcommand{\thetable}{\thesubsection-\arabic{table}}
\setcounter{figure}{0}
\setcounter{table}{0}
\section*{Appendix}
So far it is actually doing what it is supposed to do but there is an ugly inconsistency.
List of tables
List of figures
I tried to insert a space as \s \, \hspace at several locations in the command to somehow solve the problem but have not been successful.
Any help is appreciated. Thank you
EDIT:
Excerpt of .lot
\contentsline {table}{\numberline {A.4-1}{\ignorespaces THIS WHERE THE CAPTION IS \relax }}{86}{table.caption.1487}%
Excerpt of .lof
\contentsline {figure}{\numberline {A.1-1}{\ignorespaces THIS WHERE THE CAPTION IS\relax }}{59}{figure.caption.225}%

