I would like to put a title for all the appendices in the TOC namely something like
but I don't want this title in my document (since it takes to much space and the appendices are supposed to contain large figures)A : first title
B : second
In my document, I just need to have
I've already read a lot of topics that deal with that, usingappendix A
some pictures
appendix B
some others
\addcontentsline{toc}{chapter}{TITLE}
and \addtocontents{toc}{\protect\setcounter{tocdepth}{-1}}
but it doesn't work.For the moment, my code looks like
\appendix
\chapter{}
...
\chapter{}
...
Consequently, I have "Appendix A ...Appendix B" in the document (which is perfect) but only "A" and "B" in the TOC (because I have not defined any title)
Thanks in advance (and sorry for my poor english)