I am very new to LaTeX and still more in a trial and error phase than on a real understanding level.
My goal is to have all appendices - which are chapters and I would like to keep it that way - to appear in the TOC as sections, under a 'chapter' appendices.
Here is what I tried, using the tocloft package
\newpage\phantomsection
\addcontentsline{toc}{chapter}{Appendices}
\appendix
\setlength{\cftchapindent}{\cftsecindent}
\renewcommand{\cftchapfont}{\cftsecfont}
\renewcommand{\cftchapleader}{\cftsecleader}
\chapter{chapter title}
So my idea was to just tell LaTeX to write chapters to the TOC as though they were sections. My code has no effect whatsoever. Any ideas/solutions are very much appreciated

\setlength{\cftbeforechapskip}{\cftbeforesecskip}might be useful in this context, too. I forgot to put it in my question... – D.Roepo Aug 08 '11 at 15:58bookmarkpackage and experimented with\bookmarksetup{level=section}or\pdfbookmark[2]{...but the appendices would remain at the same bookmarklevel as Appendices – D.Roepo Jul 13 '13 at 16:00