Merry Christmas!
I am preparing a thesis using my school's latex templates. There is a strange problem in the table of content after I compile the sources. The 'CHAPTER' heading should start before chapter 1, but instead it appears after chapter 1, before chapter 2.
Please see the attached zip archive samplethesis.zip for all sources which also includes a pdf file which highlighted the wrong order in table of contents.
Thanks for your help in advance
Harry
General ⇒ wrong table of content order
-
- Posts: 8
- Joined: Sun Dec 19, 2010 11:54 pm
wrong table of content order
- Attachments
-
- samplethesis.zip
- file including all sources and pdf output
- (47.58 KiB) Downloaded 150 times
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
wrong table of content order
No idea why, but using input instead of include for chapter 1, fixes this for me. That is, use
rather than
The latter adds a \clearpage before the contents of the file, maybe that has something to do with it.
Code: Select all
\input{chapter1}
Code: Select all
\include{chapter1}