显示主目录,包括带数字旋转和不带数字旋转的条目

显示主目录,包括带数字旋转和不带数字旋转的条目

尽管我付出了努力,但我还是没有在论坛上找到/理解答案。如果重复了,请原谅我。

我想使用 titletoc 包显示整个目录,包括带数字旋转和不带数字旋转的条目。但是,下面的代码只显示带数字旋转的条目的主目录。

\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

%Format titles , add Toc&minitoc
\usepackage{titlesec}
\usepackage{titletoc}

%Numbering to subsubsection
\setcounter{secnumdepth}{3}

\titlecontents{chapter}
[0pt]
{\bfseries\Large\addvspace{20pt}}
{\chaptername\ \thecontentslabel\space:\space}
{}
{\hfill\contentspage}

%Show subsubsection to numbered in TOC
\setcounter{tocdepth}{3}

%% Language and font encodings
\usepackage[english, french]{babel}
\begin{document}

    \title{My title}
    \author{My name}
    \tableofcontents        %Faire Table Of Content - TOC
        \setcounter{chapter}{0}
        \chapter*{Introduction}
        Blablabla       
        \chapter{Title of the chapter1 \label{chap1}}
        {\vspace*{1pc}\hrule\vspace*{1pc}}
        \startcontents[chapters]\vbox{\bf\Large}
        \printcontents[chapters]{}{-1}{\setcounter{tocdepth}{5}}\vspace*{1pc}\hrule
        \newpage
        \section{Section1}
        Blablabla
        \subsection{subsection1}
        Blablabla
\end{document}

我错过了什么?

答案1

在谷歌搜索了一段时间后,我简单地从这个讨论帖中找到了答案[https://latex.org/forum/viewtopic.php?t=566][1]

我刚刚\addcontentsline{toc}{chapter}{Introduction}在文档环境中添加了,例如:

\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

%Format titles , add Toc&minitoc
\usepackage{titlesec}
\usepackage{titletoc}

%Numbering to subsubsection
\setcounter{secnumdepth}{3}

\titlecontents{chapter}
[0pt]
{\bfseries\Large\addvspace{20pt}}
{\chaptername\ \thecontentslabel\space:\space}
{}
{\hfill\contentspage}

%Show subsubsection to numbered in TOC
\setcounter{tocdepth}{3}

%% Language and font encodings
\usepackage[english, french]{babel}
\begin{document}

\title{My title}
\author{My name}
\tableofcontents        %Faire Table Of Content - TOC
    \setcounter{chapter}{0}
    \chapter*{Introduction}
    Blablabla
    \addcontentsline{toc}{chapter}{Introduction}       
    \chapter{Title of the chapter1 \label{chap1}}
    {\vspace*{1pc}\hrule\vspace*{1pc}}
    \startcontents[chapters]\vbox{\bf\Large}
    \printcontents[chapters]{}{-1}{\setcounter{tocdepth}{5}}\vspace*{1pc}\hrule
    \newpage
    \section{Section1}
    Blablabla
    \subsection{subsection1}
    Blablabla
\end{document}

它实际上增加了手动主目录中的章节条目并显示未编号的条目。

相关内容