I'm using the book class and I need to add the word "Chap" before the chapters numbers in the TOC. Please keep in mind that the "Chap" should only appear before my chapters numbers, not before starred chapters titles, the Index, appendices or anything similar in the TOC.
By the way, I prefer to use the book class codes rather than to use packages.
Can anybode help me accomplish this?
Here is a minimal example:
\documentclass{book}
\usepackage[nottoc]{tocbibind}
\begin{document}
\tableofcontents
\chapter{One}
\chapter{Two}
\section{Bla}
\chapter*{Bla bla}
\addcontentsline{toc}{chapter}{bla bla}
\appendix
\chapter{App one}
\begin{thebibliography}{99}
\bibitem{bla}
bla
\end{thebibliography}
\end{document}

\documentclass{report}? – minthao_2011 Feb 12 '14 at 15:22