Titletoc 和 minitoc 无法与 cftsectionname(回忆录类文档)配合使用

Titletoc 和 minitoc 无法与 cftsectionname(回忆录类文档)配合使用

在我的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}

在此处输入图片描述

相关内容