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)?
is it possible in LaTeX to have numbered chapters inside the appendix, without having them appear in the Table of Contents (TOC)? |
|||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Using the tip described on TeX Stack Exchange:
|
|||
|
|
{\renewcommand{\addtocontents}[2]{} \chapter{Appendix chapter}}to remove the appendix chapter from the ToC. Grouping the\renewcommandlocalizes the change. – Werner Aug 10 '12 at 2: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