섹션별로 가능할까요?목차수업시간 에 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}
내가 원하는 것을 도와줍니다.