文章分节目录

文章分节目录

是否可以分部分目录article课堂里?

答案1

最简单的方法似乎是etoc由你的同伴用户提供的[tag:jfbu],只需使用\localtableofcontents适当的

\documentclass{article}

\usepackage{etoc}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\clearpage
\section{One}
\localtableofcontents

\subsection{First}
\blindtext
\clearpage
\section{Two}
\localtableofcontents

\clearpage
\subsection{First}
\end{document}

在此处输入图片描述

答案2

我通过在论坛上进行一些搜索解决了这个问题。

使用包,

\usepackage{titletoc}

使用命令,

\newcommand\MiniToC{%
  \setcounter{tocdepth}{2}
  \startcontents
  \printcontents{}{1}{\section*{\contentsname}\vskip-3.5ex\hrulefill\vskip1ex}
  \vskip-0.5ex\noindent\hrulefill
  \setcounter{tocdepth}{0}
}
\setcounter{tocdepth}{0}

帮助我得到我想要的东西。

相关内容