目录,文章类别,在章节编号旁边添加一个点

目录,文章类别,在章节编号旁边添加一个点

如同我想在问题后面加一个点部分-我的目录中的数字。但是我使用文章链接中提到的解决方案对这个类不起作用。有没有针对这种情况的解决方法?

答案1

在下面tocloft, 使用

\renewcommand{\cftsecaftersnum}{.}

插入到节单元ber.之后。对于视觉效果(尽管文档类别不同),以下示例完全取自snumToC,章节问题,在章节号旁边添加一个点加上上述内容:

在此处输入图片描述

%...
\usepackage{tocloft}% http://ctan.org/pkg/tocloft
\renewcommand\cftchapaftersnum{.}% adds dot after chapter title in ToC
\renewcommand\cftchapdotsep{\cftdotsep}% adds leader dots from chapter titles to page numbers
\renewcommand{\cftsecaftersnum}{.}% adds dot after section title in ToC
%...

答案2

宏的定义\numberline

% latex.ltx, line 5772:
\def\numberline#1{\hb@xt@\@tempdima{#1\hfil}}

因此你可以将其添加到文档序言中

\makeatletter
\renewcommand\numberline[1]{\hb@xt@\@tempdima{#1.\hfil}}
\makeatother

相关内容