文章的分段目錄

文章的分段目錄

是否可以有一個分段的目錄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}

幫助我做我想做的事。

相關內容