1

I'm using a template, not created by me, for the thesis. I use the index for each chapter. (minitoc) Why the index of a certain chapter is put on 2 chapters later? i.e. the index of chapter 1 is on chapter 3. In this file there are the code and the pdf.

lockstep
  • 250,273

1 Answers1

2

There seems to be a conflict between minitoc and the KOMA option listof=totoc; load the package tocbibind and remove that option when declaring the class, i.e., use

\documentclass[
  b5paper,
  10pt,
  twoside,
  parskip=half,
  numbers=noenddot,
  bibliography=totocnumbered
]{scrbook}
\usepackage{tocbibind}

Nt the way, you are using packages which are not fully compatible with KOMA classes; keep your fingers crossed.

Gonzalo Medina
  • 505,128