latex解决目录文字重叠问题的方法

时间:2023-01-04 06:08:09

当我将章节名字改为  第x章 的时候,目录中的章节名字出现了重叠。

baidu了一下解决方法,加入

  1. \makeatletter
  2. \renewcommand{\numberline}[1]{%
  3. \settowidth\@tempdimb{#1\hspace{0.5em}}%
  4. \ifdim\@tempdima<\@tempdimb%
  5.   \@tempdima=\@tempdimb%
  6. \fi%
  7. \hb@xt@\@tempdima{\@cftbsnum #1\@cftasnum\hfil}\@cftasnumb}
  8. \makeatother

完美解决问题。