- IN Packages
How to add Bibliography (and more) to Table of Contents
- Jul 4, 2012 |
- 2 Comments
I often wonder why the bibliography of LaTeX documents is not shown in the Table of Contents by defaults. Happily enough, I wasn’t the only one wondering this. That is why the tocbibind package was created. This package allows one to add the bibliography to the ToC. But wait, there more!
Usage
The usage is extremely simple. Add the following to the preamble:
\usepackage{tocbibind} |
THis, by default, includes a number of things to the table of contents: the Table of Contents itself, the List of Figures, the List of Tables, the Bibliography and the Index. If you want to exclude one of these, add the following package options:
notbibto remove the Bibliographynotindexto remove the Indexnottocto remove the Table of Contentsnotlofto remove the List of Figuresnotlotto remove the List of Tables
For example, to suppress the inclusion of the List of Figures:
\usepackage[notlof]{tocbibind} |
More
More options are described in the package documentation.
I will be very grateful if you demonstrate with an example how to have a bibliography list after each chapter of a book (and not in the traditional way at the end of the book).
Hi Ivette,
This can be done with the
chapterbibpackage. Have a look at the documentation here.