writing my thesis in LaTex and build a small (koma-scrreprt) template ... but I got problems with the numbering. Uni wants roman numbers for toc and preface, arabic numbers for the chapters. abstract and title without numbers.
This is my try:
Code: Select all
\begin{document}
\pagestyle{empty}
\selectlanguage{english}
\include{Frontmatter/Title}
\cleardoublepage
\include{Frontmatter/Abstract}
\cleardoublepage
\pagestyle{plain}
\pagenumbering{Roman}
\include{Frontmatter/Preface}
\cleardoublepage
\addcontentsline{toc}{chapter}{Preface}
\tableofcontents
% ********************************************************************
\setcounter{page}{1} %reset the page counter
\pagenumbering{arabic}
\include{Chapters/01}
\include{Chapters/02}
\include{Chapters/03}
\include{Chapters/04}
\include{Chapters/05}
\include{Chapters/06}
\appendix
\include{Chapters/0A}
\end{document}

Thanks a lot!