My table numbering is not working correctly. I have defined continuous numbers like this:
\usepackage{chngcntr}
\counterwithout{table}{chapter}
which works fine, but for some reason the numbering starts at 2. Only if I place the table at the very start of my document, it begins at 1. Look at this:
\begin{document}
% Deckblatt
\begin{spacing}{1}
\input{ads/deckblatt}
\end{spacing}
\newpage
\begin{table}
\begin{center}
\begin{tabular}{ c c c }
cell1 & cell2 & cell3 \
cell4 & cell5 & cell6 \
cell7 & cell8 & cell9
\end{tabular}
\end{center}
\caption{Test\label{tab:table-test}}
\end{table}
...
\end{document}
It results in Table 2 on page 2 after the cover sheet:

However, if I move the table before the cover sheet, it becomes table 1 (in the center of the page):
So I thought the code in \input{ads/deckblatt} is causing this, however its content doesn't seem to make any changes to numberings:
\begin{titlepage}
\begin{longtable}{p{.4\textwidth} p{.4\textwidth}}
{\includegraphics[width=6cm]{images/logo.png}} &
{\includegraphics[height=2.6cm]{images/dhbw.png}}
\end{longtable}
\enlargethispage{20mm}
\begin{center}
\vspace*{12mm} {\LARGE\bf \titel }\\
\vspace*{12mm} {\large\bf \arbeit}\\
\vspace*{12mm} für die Prüfung zum\\
\vspace*{3mm} {\bf \abschluss}\\
\vspace*{12mm} des \studiengang\\
\vspace*{3mm} an der Dualen Hochschule Baden-Württemberg \dhbw\\
\vspace*{12mm} von\\
\vspace*{3mm} {\large\bf \autor}\\
\vspace*{12mm} \datumAbgabe\\
\end{center}
\vfill
\begin{spacing}{1.2}
\begin{tabbing}
mmmmmmmmmmmmmmmmmmmmmmmmmm \= \kill
\textbf{Bearbeitungszeitraum} \> \zeitraum\\
\textbf{Matrikelnummer, Kurs} \> \martrikelnr, \kurs\\
\textbf{Ausbildungsfirma} \> \firma, \firmenort\\
\textbf{Betreuer} \> \betreuer\\
\textbf{Gutachter} \> \gutachter
\end{tabbing}
\end{spacing}
\end{titlepage}
Why does the table numbering start at 2 and how can I prevent this from happening? In case thats relevant, I am using documentclass scrreprt.

ads/deckblatt.tex? – Mico Jun 27 '22 at 14:58