I am desperately looking for the solution of my problem:
I am writing a dissertation. My contents will include Abstract, Abbreviations, Symbols and Glossary before the very first Chapter. All these four will not count as chapter, so I used
Code: Select all
\chapter*{Abstract}
Code: Select all
\include{TitlePage}
\pagenumbering{roman}
\include{Abstract}
\include{Abbreviations}
\include{Symbols}
\include{Glossary}
\tableofcontents
\addcontentsline{toc}{section}{Abstract}
\addcontentsline{toc}{section}{Abbreviations}
\addcontentsline{toc}{section}{Symbols}
\addcontentsline{toc}{section}{Glossary}
\newpage
\pagenumbering{arabic}
\include{Intro1}
... and so on
Code: Select all
Contents
Abstract .................. xv
Abbreviations ............. xv
Symbols ................... xv
Glossary .................. xv
Code: Select all
Contents
Abstract................... i
Abbreviations.............. iv
Symbols.................... vi
Glossary................... x
Any help will be highly appreciated,
Leoni