使用书籍类时,先制作一个简短的目录,然后制作一个详细的目录

使用书籍类时,先制作一个简短的目录,然后制作一个详细的目录

我正在使用book课程用于我的论文。我想创建一个简短的目录(仅包含章节标题),然后创建一个详细的目录(包含默认的目录信息,即章节、部分和小节标题)。

这里是一个很好的例子。然而,memoir类。我如何才能将示例改编为book班级?

这是我的 MWE:

\documentclass[oneside,11pt]{book}

\begin{document}

\tableofcontents

\chapter{First ch}
\section{First sec ch 1}
\subsection{Sub A}
\subsection{Sub B}
\section{Second sec ch 1}

\chapter{Second ch}
\section{First sec ch 2}
\subsection{Sub A}
\subsection{Sub B}
\section{Second sec ch 2}

\chapter{Third ch}
\section{First sec ch 3}
\subsection{Sub A}
\subsection{Sub B}
\section{Second sec ch 3}

\end{document}

姆韦

答案1

借助该etoc包,您可以实现以下目标:

在此处输入图片描述在此处输入图片描述

\documentclass{book}
\usepackage{etoc}

\usepackage{blindtext}

\begin{document}
\etocsettocdepth.toc{chapter}
\tableofcontents

\etocignoretoctocdepth
\tableofcontents

\blinddocument
\blinddocument
\blinddocument

\end{document}

相关内容