Я использовал этот код для генерации приложений
\documentclass [a4paper,12pt,oneside,final]{book}
\usepackage[title]{appendix}
\begin{document}
\dominitoc
\tableofcontents
\listoffigures \addcontentsline{toc}{chapter}{List of Figures} \mtcaddchapter
\listoftables \addcontentsline{toc}{chapter}{List of Tables} \mtcaddchapter
\begin{appendices}
\chapter{Appendix A}
\section{aaaa}
\end{appendices}
\end{document}
Приложения приведены в конце оглавления.
Как мне их удалить, чтобы они не появлялись?
любое предложение?
решение1
Можете добавить
\addtocontents{toc}{\setcounter{tocdepth}{-1}}
в самом начале среды subappendices
.
\documentclass [a4paper,12pt,oneside,final]{book}
\usepackage[title]{appendix}
\usepackage{minitoc}
\begin{document}
\dominitoc
\tableofcontents
\listoffigures \addcontentsline{toc}{chapter}{List of Figures} \mtcaddchapter
\listoftables \addcontentsline{toc}{chapter}{List of Tables} \mtcaddchapter
\begin{appendices}
\addtocontents{toc}{\setcounter{tocdepth}{-1}}
\chapter{Appendix A}
\section{aaaa}
\end{appendices}
\end{document}
Если главы, в частности эта для приложений, имеют начальный размер \include
, лучше всего разместить строку
\addtocontents{toc}{\setcounter{tocdepth}{-1}}
во вспомогательном файле непосредственно перед \chapter
командой.