标签和标题分离

标签和标题分离

如何增加目录中章节编号和章节标题之间的间距?我正在使用该titletoc包,我的代码目前如下所示:

 \contentsmargin[25pt]{0pt}

 \titlecontents{chapter}[\tocsep]
   {\addvspace{4pt}\small\bfseries\sffamily}
   {\hspace*{3pt}\contentslabel[\thecontentslabel]{\tocsep}}
   {}
   {\hfill\thecontentspage}
   []

 \titlecontents{section}[\tocsep]
   {\addvspace{2pt}\small\sffamily}
   {\hspace*{3pt}\contentslabel[\thecontentslabel]{\tocsep}}
   {}
   {\ \titlerule*[.5pc]{.}\ \thecontentspage}
   []

如果部分的数字很高,数字和文本太接近。我怎样才能让它看起来更像这样:

1.23 ~~~~ 章节标题

1.23 章节的标题?

我无法在包文档中找到答案......

谢谢

答案1

您可以使用强制参数增加为排版数字而保留的空间\contentslabel;您当前正在使用

\contentslabel[\thecontentslabel]{\tocsep}

我假设\tocsep是先前定义的长度。只需使用更大的值即可;这可能需要调整当前定义中使用的其他一些长度。

顺便提一下,您的定义似乎存在一些问题,但由于缺乏适当的最小工作示例,因此无能为力。在这种情况下,请始终发布 MWE。

相关内容