i have some problems with references to tables.
The numbering is working as i want it for figures and tables. Therefore i use this
Code: Select all
\numberwithin{figure}{section}
\numberwithin{table}{section}
And if I want to reference to a figure it looks like this in the document
Text ... \ref{fig:sapexceldatei}
Code: Select all
\begin{figure}
\centering
\includegraphics[width=12cm]{bilder/exceldimaccount.eps}
\caption{Excel-Datei für Dateneingabe für Dimensionen}
\label{fig:sapexceldatei}
\end{figure}
Code: Select all
\renewcommand{\thefigure}{\arabic{section}.\arabic{figure}}
\makeatletter \@addtoreset{figure}{section} \makeatother
Code: Select all
\renewcommand{\thetable}{\arabic{section}.\arabic{table}}
\makeatletter \@addtoreset{table}{section} \makeatother
What am i doing wrong? Thanks for any help,
Martin