有用户需要增加chapter名称,如下:
利用titletoc包可以实现其功能,代码如下:
\documentclass{book} \usepackage{lipsum}% http://ctan.org/pkg/lipsum \usepackage{titletoc}% http://ctan.org/pkg/titletoc \titlecontents{chapter}% <section-type> [0pt]% <left> {}% <above-code> {\bfseries\chaptername\ \thecontentslabel\quad}% <numbered-entry-format> {}% <numberless-entry-format> {\bfseries\hfill\contentspage}% <filler-page-format> \begin{document} \tableofcontents \chapter{Introduction} \lipsum[1] \section{First section} \lipsum[2-3] \section{Second section} \lipsum[4-5] \section{Last section} \lipsum[6-7] \chapter{Second chapter} \lipsum[1] \section{First section} \lipsum[2-3] \section{Second section} \lipsum[4-5] \section{Last section} \lipsum[6-7] \chapter{Last chapter} \lipsum[1] \section{First section} \lipsum[2-3] \section{Second section} \lipsum[4-5] \section{Last section} \lipsum[6-7] \end{document}
选自:http://tex.stackexchange.com/questions/39153/table-of-contents-with-chapter
发表评论 取消回复