[Tex/LaTex] Including a pseudo chapter in the table of contents

sectioningtable of contents

I have all parts of my thesis (introduction/body/results ) etc. in the table of contents. Right before the introduction I have an image (on a separate page) which currently has no title. I have been asked to give it a title/heading such that it gets included in the table of contents. I dont want to make it a chapter. How can I include it in the table of contents?

Best Answer

Add in the preamble of your document

\providecommand\phantomsection{}% for hyperref

Then before the picture

\clearpage
% Add the title here, maybe \chapter*{My image title} ????
\phantomsection
\addcontentsline{toc}{chapter}{My image title}
%Your image here ....