2

I want to modify the Table of Contents by adding the words "CHAPTER NO", "CHAPTER NAME" and "PAGE NO" above the respective columns.

Presently my ToC looks like this...

            Acknowledgement     i
            Abstract            ii

1           Introduction        1
            1.1 Some heading    2

2           Similar way         4

I want it to look Like ...

Chapter No  Chapter Name    Page No

            Acknowledgement     i
            Abstract            ii

1           Introduction        1
            1.1 Some heading    2

2           Similar way         4

Any way I could go about accomplishing this? Also the same for List of Figures and List of Tables.

Werner
  • 603,163
Naren
  • 43
  • 6

1 Answers1

1

I didn't test it but adding a simple line can be done by:

\addtocontents{toc}{\makebox[2cm][l]{Chapter No.}\makebox[6cm][l]{Chapter Name}\hfill\makebox[2cm][l]{Chapter page}}

Maybe the commands must be protected by \protect. OF course you must setup the correct widths of the toc entries.

Marco Daniel
  • 95,681