latex中scrbook改变不了目录怎么办
时间: 2024-05-21 18:15:00 浏览: 138
latexshort 中文
对于您提出的这个问题,可以尝试在scrbook文档类中使用tocbasic宏包来控制目录的格式和内容。可以使用下列代码:
\usepackage{tocbasic}
\DeclareTOCStyleEntries[
indent=0pt,
numwidth=2.3em,
dynnumwidth,
entryformat={\hspace*{0.5em}\bfseries},
pagenumberformat=\hspace*{0.5em}
]{tocline}{chapter,section}
此外,也可以在导言区设置以下三个参数:
\DeclareTOCStyleEntry[beforeskip=0pt]{chapter}{chapter}
\DeclareTOCStyleEntry[indent=1.5em,numwidth=2em]{section}{section}
\DeclareTOCStyleEntries[beforeskip=0pt]{section}{subsection,subsubsection}
代码中的参数可以根据需要进行调整和修改。希望这能帮助到您。
阅读全文