Hallo Zusammen,

Latex fängt meine sections mit 1 an.
Also statt
1 Einleitung
2 ...
3 ...
3.1 ...
3.2 ...

macht er mir fälschlicherweise

1 Einleitung
2 ...
3 ...
1 ...
2 ...

Anbei mein LaTeX-Code:

\addto\captionsngerman{\let\appendixtocname\append ixname%
\let\appendixpagename\appendixname}
\def\addsquare#1{\tikz\node[draw]{#1};}
\makenomenclature %Für Erstellung Abk.Vz
\bibliographystyle{geralpha}
\geometry{a4paper, left=35mm, right=25mm, top=25mm, bottom=25mm}
\setlength{\parindent}{0pt}
\newcommand{\sectionnumbering}[1]{
\setcounter{section}{0}
\renewcommand{\thesection}{\csname #1\endcsname{section}}}

\begin{document}
\renewcommand{\thechapter}{\Roman{chapter}}
\sectionnumbering{Roman}
\pagenumbering{roman}
\include{chapter/titlepage}
\tableofcontents
\include{chapter/listofabbr}
\include{chapter/listofsymb}
\listoffigures
\listoftables
\clearpage
\setcounter{chapter}{0}
\renewcommand{\thechapter}{\arabic{chapter}}
\sectionnumbering{arabic}
\setcounter{page}{1}
\pagenumbering{arabic}
\include{chapter/einleitung}
\include{chapter/chapter2}
\include{chapter/chapter3}
\renewcommand{\bibname}{Literatur- und Quellenverzeichnis}\bibliography{bibliography/bibliography}
\include{chapter/appendix}
\end{document}

Wer kann mir helfen?

Vielen Dank im Voraus.

Grüße

XiNurM