記事のセクション別目次

記事のセクション別目次

セクションごとに目次クラスで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}

私が望むことを手伝ってくれます。

関連情報