Hi,

Originally Posted by
dimuk
Pls let me know how to enter the table of content? I tried it using \tableofcontents. But then it doesn't give introduction. So i then type \addcontent{toc}{Introduction}. But I didn't get the page number for the introduction page. How do I do this?
If the introduction is a section you can try this :
Code:
\section*{Introduction}
\addcontentsline{toc}{section}{Introduction} If it's a chapter then
Code:
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction} should work.