I have a table of contents starting on page 3.
I use \tableofcontents to generate it.
My actual generated pdfs contents page looks like this
contents..............3
chapter1...........6
chapter2.............19
How to ignore this contents.........3 line?
I am not using the class memoir, I m using report so the duplicate doesnt work for me.
Answer : As pointed out by @egreg.
Use \usepackage[nottoc]{tocbibind} instead of \usepackage{tocbibind}
memoirhas the star form of\tableofcontents. With the standard classes the problem might be caused by having\usepackage{tocbibind}instead of\usepackage[nottoc]{tocbibind}. – egreg Mar 21 '13 at 13:04