セクションごとに目次クラスで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}
私が望むことを手伝ってくれます。