\RedeclareSectionCommand 与 \addsec 结合使用

\RedeclareSectionCommand 与 \addsec 结合使用

我怎样才能改变的行为\addsec?使用此代码

\documentclass{scrbook}
\begin{document}
\tableofcontents
%
\part{Part}
\addchap{First Title}
    \addsec{First Section}
    \addsec{Next Section}
%
\part{Part}
\chapter{First Real Chapter}
    \section{First Real Section}
    \section{Second Real Section}
\end{document}

我进入目录

在此处输入图片描述

但我希望将未编号的第一部分与第一实际部分对齐。使用\RedeclareSectionCommand[tocnumwidth=5.5em]{addsec}eg 不起作用(正如手册 21.8 中所述)。

答案1

使用选项toc=indentunnumbered作为类选项

\documentclass[toc=indentunnumbered]{scrbook}

或使用

\KOMAoptions{toc=indentunnumbered}

例子:

\documentclass{scrbook}
\KOMAoptions{toc=indentunnumbered}
\begin{document}
\tableofcontents
\part{Part}
\addchap{First Title}
\addsec{First Section}
\addsec{Next Section}
\part{Part}
\chapter{First Real Chapter}
\section{First Real Section}
\section{Second Real Section}
\end{document}

在此处输入图片描述

相关内容