I wonder whether it's possible to have a customized ToC for the bibliography, dealing with its sections which are not to be included in the main ToC.
Minimal example:
Code: Select all
\documentclass{book}
\setcounter{tocdepth}{0} % Sections not included in the main ToC
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{Introduction}
\chapter{Conclusion}
\endmatter
\chapter{Bibliography}
% Here should be placed the customized ToC, dealing with sections of this chapter
\section{}
\section{}
\end{document}