On Aug 5, 4:25 am, r <
inp...@gmail.com> wrote:
> I have noticed that the toc file generated by the latex command:
>
> \addcontentsline{toc}{chapter}{Bibliography}
>
> has an entry:
>
> \contentsline {chapter}{Bibliography}{1}{chapter*.2}
(extra argument due to hyperref presumably)
> But the page shown in the table of contents is not 1. Can anyone
> explain
You put your \addcontentsline on a different page than the
bibliography, obviously.
Use
\cleardoublepage
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{mybib}