是否可以有一個分段的目錄在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}
幫助我做我想做的事。