how can i change the "listoftables" and "listoffigures" counter.
i want to generate them separately in the "tableofcontents" like:
Abb."2.Kapitel" and "erstes Bild/Tabelle in diesem Kapitel"
for instance:
Abb.2-1 or Tab.2-1
i am already able to generate:
Abb. and Tab.
==============================================================
documentclass"article"
...
\usepackage{tocloft}
\renewcommand{\cftfigpresnum}{Abb.}
\renewcommand{\cfttabpresnum}{Tab.}
%\renewcommand{\cftfigaftersnum}{:}
%\renewcommand{\cfttabaftersnum}{:}
\setlength{\cftfignumwidth}{3cm}
\setlength{\cfttabnumwidth}{3cm}
\setlength{\cftfigindent}{0cm}
\setlength{\cfttabindent}{0cm}
%==============================================================
\begin{document}
\setcounter{tocdepth}{3}
\addcontentsline{toc}{subsection}{Inhaltsverzeichnis}
\tableofcontents
\newpage
\setcounter{page}{5}
\listoffigures
\addcontentsline{toc}{subsection}{Abbildungsverzeichnis}
\newpage
\setcounter{page}{6}
\listoftables
\addcontentsline{toc}{subsection}{Tabellenverzeichnis}
\pagestyle{headings}
\pagestyle{fancy}
--------------------------------
\begin{figure}[h!]
\centering
\includegraphics[width=1.00\textwidth]{link xyz.jpg}
\caption{\textbf{Bildnahme \cite{bib-14}}}
\label{fig:Bildnahme}
\end{figure}
..in the same way i am not able to generate a right counter for the "Tabellenverzeichnis".
thank^s in advance for a helpfull answer.
