更改目录 (toc) 的样式部分和子部分

更改目录 (toc) 的样式部分和子部分

我想提取目录中加粗的部分和子部分。我使用类自定义 abtntex。我使用 \tableofcontents* 我的总结:

在此处输入图片描述

正如我想要的:

在此处输入图片描述

https://www.overleaf.com/17776192vgbyvhnzxvkn(示例代码)

答案1

我将其放在了背面进行检查:

或者在您的文件中使用以下编码:

\makeatletter

\def\@secdottedtocline#1#2#3#4#5{%
  \renewcommand\@dotsep{1}
  \ifnum #1>\c@tocdepth \else
    \vskip \z@
    {\leftskip #2\relax \rightskip \@tocrmarg \parfillskip -\rightskip
     \parindent #2\relax\@afterindenttrue
     \interlinepenalty\@M
     \normalfont\leavevmode
     \@tempdima #3\relax
     \advance\leftskip \@tempdima \null\nobreak\hskip -\leftskip
     {#4}\nobreak
     \leaders\hbox{}\hfill
     \nobreak
     \hb@xt@\@pnumwidth{\hfil\normalfont#5}%
     \par}%
  \fi}



\renewcommand*\l@section{\@secdottedtocline{2}{60pt}{22pt}}
\renewcommand*\l@subsection{\@secdottedtocline{2}{60pt}{22pt}}
\makeatother 

相关内容