ich bin neu in TeX und frage mich, was ich falsch mache. Hier das Minimalbeispiel:
\documentclass[numbers=noenddot,a4paper,12pt,listof=totoc,bibliography=totoc]{scrbook}
\usepackage{blindtext}
\begin{document}
\pagenumbering{Roman}
\chapter*{Abstract}
\blindtext
\chapter*{Preface}
\blindtext
\tableofcontents
\setcounter{tocdepth}{5}
%\printglossary[type=\acronymtype,style=long]
\listoffigures %Creates a list of figures
\listoftables %Creates a list of tables
\pagenumbering{arabic}
\chapter{Introduction}
\blindtext
\chapter{Main}
\blindtext
\chapter{Conclusion}
\blindtext
\end{document}
Im Klartext sieht mein Inhaltsverzeichnis wie folgt aus:
List of Figures VII
List of Tables 1
1 Introduction 3
2 Main 5
3 Conclusion 7
Ich will aber:
List of Figures VII
List of Tables IX
1 Introduction 1
2 Main 3
Conclusion 5
Hoffe, jemand hat einen Rat für mich.
Gruß
