I'm typesetting my thesis using what is essentially the book document class. I am also referring to "New Hart's Rules: The Handbook of Style for Writers and Editors" and following it wherever possible.
The style guide says under §1.2.11 (Contents):
This means that I need the heading for my List of Tables and my List of Figures to say one thing, but the item in the contents table to say something else.Lists in the prelims are referred to on the contents page as List of Illustrations, List of Abbreviations, etc. even though their headings are best formulated simply as Illustrations, Abbreviations, etc.
I've tried several methods to achieve this. None have worked for me.
1) Using
Code: Select all
\usepackage[nottoc,notlof,notlot]{tocbibind}
Code: Select all
\renewcommand*\listfigurename{Figures}
Code: Select all
\addcontentsline{toc}{chapter}{List of Figures}
This didn't work properly. The page numbers on the contents page for each list were either for the page for or the page after. Also the hyperref link linked to the wrong page. This makes sense because the
Code: Select all
\addcontentsline
Code: Select all
\listoffigures
2) I tried to modify the my Thesis class (which is basically the same as Book class, but with some modifications), so that if I specify
Code: Select all
\renewcommand*\listfigurename{Figures}
This approach seemed inelegant to me, so I didn't pursue it.
3) Finally, I tried to find a way to give the List of Figures/Tables a short title (for the contents page) and a long title (for the heading), much like you can for chapters.
I couldn't find anything. I looked at trying to modify the class to accept this, but it look very complicated. I again considered it an inelegant solution and figured there must be a better way.\chapter*[short title]{long title}
Does anyone know of the best way (or just a way) to do this please? I've been scouring google for a solution for hours. If someone's done it before, then I must have been using rubbish search terms.
Many thanks,
Chris