titletoc包中添加所有内容

titletoc包中添加所有内容

当我使用 \startcontents 和 \printcontents 时,“部分”目录会将所有内容添加到 .out 文件中,尽管我使用的是 \stopcontents。它们像内联文本一样添加,并且应该出现的部分是唯一带有部分编号和页面的部分。

在此处输入图片描述

代码如下:

\documentclass[twocolumn]{book}

\usepackage[english]{babel}
\usepackage[pdfborder={0 0 0}]{hyperref}
\usepackage{titletoc}

\title{University}
\author{Me}
\date{\today}

\begin{document}
\maketitle
\tableofcontents

\part{\label{part:1}Part I}

    \chapter{\label{chap:1.1}Chapter 1}

    \chapter{\label{chap:1.2}Chapter 2}
        \startcontents[chapterTwo]
        \printcontents[chapterTwo]{}{1}{}

        \section{\label{sect:1.2.1}Section 1}

        \section{\label{sect:1.2.2}Section 2}

        \stopcontents[chapterTwo]

    \chapter{\label{chap:1.3}Chapter 3}

        \section{Section 1}

        \section{Section 2}

\end{document}

相关内容