在我的memoir
班级文档中,我希望在每个\part
标题后获得一个目录。我尝试过该minitoc
软件包,但它无法与titlesec
我文档中使用的软件包配合使用。此外,该titletoc
软件包对我的回忆录班级文档存在问题。
确实,此代码不起作用:
\renewcommand*{\cftsectionname}{Section } %Section doesn't appear
\cftsetindents{section}{1.4em}{4mm}
\renewcommand{\cftsectionfont}{\itshape\bfseries}
如果\usepackage{titletoc
启用了},则“Section”一词将不会出现在我的目录中。
我能做些什么 ?
\documentclass{memoir}
\usepackage[explicit]{titlesec}
\usepackage{titletoc}
\renewcommand*{\cftsectionname}{Section }
\cftsetindents{section}{1.4em}{4mm}
\renewcommand{\cftsectionfont}{\itshape\bfseries}
\begin{document}
\tableofcontents
\part{Part ONE}
\startcontents[parts]
\printcontents[parts]{}{0}{\setcounter{tocdepth}{2}}
\chapter{Chapter ONE of PART ONE}
\section{Something is wrong with section}
\chapter{Chapter TWO of PART ONE}
\end{document}