
So basicly this is the problem, i have a thesis set up, where i include my files using
Code: Select all
\input{./tex/bla.tex}
The order is basicly this:
front
list of figures
list of tables
abbreviations
welcome text
index
Now, the problem i have is, that i want all the files before the index, to be in the index (numbered, i use \pagenumbering{roman} ofc) but not with a chapter number.
But the welcome text for example has
Code: Select all
\addtocontents{toc}{\vspace{1em}}
\chapter*{welcome}
So basicly, i wanna have some files in my index with a pagenumber, but without a chapter number

Whats the most easy way to do this ?