Possible Duplicate:
Excluding chapters from ToC in amsbook
is it possible in LaTeX to have numbered chapters inside the appendix, without having them appear in the Table of Contents (TOC)?
Possible Duplicate:
Excluding chapters from ToC in amsbook
is it possible in LaTeX to have numbered chapters inside the appendix, without having them appear in the Table of Contents (TOC)?
Using the tip described on TeX Stack Exchange:
\addtocontents{toc}{\setcounter{tocdepth}{-1}}
\chapter{Preface}
\addtocontents{toc}{\setcounter{tocdepth}{2}}
{\renewcommand{\addtocontents}[2]{} \chapter{Appendix chapter}}to remove the appendix chapter from the ToC. Grouping the\renewcommandlocalizes the change. – Werner Aug 10 '12 at 02:38Appendixentry, insert\addtocontents{toc}{chapter}{Appendix}, followed by\let\oldaddtocontents\addtocontents \renewcommand{\addtocontents}[2]{}and then use your appendix chapters as usual. Then, before yourBibliography, add\let\addtocontents\oldaddtocontents. This assumes your document structure is such that you have a bibliography following you appendix. If this is not the case, you must have used the\renewcommandI suggested in the previous comment too soon. – Werner Aug 17 '12 at 15:37