我在使用包的 [titles] 模式时遇到了问题tocloft
。我小心地在之前加载了 tocloft etoc
,但仍然存在两个问题。首先,标题说明不适用于etoctableofcontents
,其次,tocbidind
包不适用于etoctableofcontents
,虽然当我删除 [titles] 模式时一切正常,但我随后失去了编辑标题的能力。这是我的 MWE:
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[margin=2.5cm]{geometry}
\usepackage{lipsum}
\usepackage{hyperref}
\usepackage{sectsty}
\usepackage[titles]{tocloft}
\usepackage{etoc}
\usepackage[section]{tocbibind}
\sectionfont{\centering}
\renewcommand{\cfttoctitlefont}{\centering\Large\bfseries}
\renewcommand{\cftaftertoctitle}{\hfill}
\begin{document}
\renewcommand*\contentsname{Sommaire}
\tableofcontents
\chapter{INTRODUCTION} \lipsum{1}
\chapter{METHODOLOGY} \lipsum{1}
\chapter{CONCLUSION} \lipsum{1}
\pagebreak
\listoffigures
\begingroup
\let\clearpage\relax
\listoftables
\endgroup
\pagebreak
\renewcommand*\contentsname{Tables des matières}
\etocsetnexttocdepth{subsubsection}
\etoctableofcontents
\end{document}
感谢您的帮助。