对于minitoc
包,可以通过命令更改目录标题\stctitle
。但是,对于以下 MWE,我发现相同的目录标题“内容”没有变化。
那么,哪里出了问题或者缺失了什么?
\documentclass{scrbook}
\usepackage[english]{babel}
\usepackage{lipsum,minitoc}
\addto{\captionsenglish}{%
\renewcommand{\stctitle}{Another Title}
}
\begin{document}
\dominitoc
\chapter{Chapter 1}
\minitoc
\section{Section 1}
\lipsum[1-20]
\section{Section 2}
\lipsum[1-20]
\end{document}
答案1
\minitoc
用于章节方式ToC
,因此\mtctitle
必须更改,而不是\stctitle
(用于分节目录)(分节目录标题)
然而,我怀疑这minitoc
是否KOMA
是一个很好的组合,因此我切换到book
而不是scrbook
课程。
\documentclass{book}
\usepackage[english]{babel}
\usepackage{lipsum}
\usepackage{minitoc}
\addto{\captionsenglish}{% Making babel aware of special titles
\renewcommand{\mtctitle}{Another Title}
}
\begin{document}
\dominitoc
\tableofcontents
\chapter{Chapter 1}
\minitoc
\section{Section 1}
\lipsum[1-20]
\section{Section 2}
\lipsum[1-20]
\end{document}