到目前为止我一直在像这样使用 tocstyle:
% table of content styling
\usepackage[tocindentauto]{tocstyle}
\usetocstyle{KOMAlike}
\settocstylefeature{pagenumberbox}{\hbox}
我知道最新版本的 KOMA-script 删除了该tocstyle
软件包。但找不到我应该用什么来替代...任何帮助都将不胜感激!
提前非常感谢您!
编辑:根据机器人的问题:目前我收到错误:! LaTeX Error: File 'tocstyle.sty' not found.
但我找不到任何内容告诉我如何替换 tocsytle 包以获得与我当前相同的布局。
答案1
不幸的是,问题中没有 MWE,所以我不知道使用了哪个类等等。此外,我不知道期望的结果是什么样子。所以下面的例子只是一个猜测:
\documentclass{book}
\usepackage{tocbasic}
\DeclareTOCStyleEntry[%
entryformat=\bfseries\textsf,
pagenumberformat=\bfseries\textsf,
]{tocline}{chapter}
\DeclareTOCStyleEntries[
pagenumberbox=\hbox,
dynnumwidth
]{tocline}{%
chapter,section,subsection,subsubsection,paragraph,subparagraph,%
figure,table
}
\DeclareTOCStyleEntries[
dynindent
]{tocline}{subsection,subsubsection,subparagraph}
\begin{document}
\frontmatter
\tableofcontents
\chapter{Abstract}
\mainmatter
\chapter{Interesting chapter}
\section{A section}
\subsection{A subsection}
\cleardoublepage\setcounter{page}{1001}% only for large page number in the example
\chapter{Boring chapter}
\section{Boring section}
\end{document}