表格列表和图片列表的右边距不好

表格列表和图片列表的右边距不好

我的图表列表和表格列表的右边距存在很大问题。有些单词忽略了右边距。时间段,我这样写过(2071-2100),在图表列表和表格列表中也以不可接受的方式出现,只是忽略了边距。Abbildung 表示图形,Tabelle 表示表格。

\usepackage[ngerman]{babel}

%Format list of figures
\titlecontents{figure}
  [0em]
  {}
  {\figurename\enspace\thecontentslabel:\enspace}
  {}
  {\titlerule*[1pc]{.}\contentspage}[\vskip10pt]

%Format table of contents
    \titlecontents{table}
  [0em]
  {}
  {\tablename\enspace\thecontentslabel:\enspace}
  {}
  {\titlerule*[1pc]{.}\contentspage}[\vskip10pt]

% No numbering of literature chapter for list of tables
\usepackage[nottoc,notlot,notlof]{tocbibind}

\addcontentsline{toc}{section}{Abbildungsverzeichnis}
\listoffigures

\addcontentsline{toc}{section}{Tabellenverzeichnis}
\listoftables

上面的代码使我的 LoF 和 LoT 看起来像这样:

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

答案1

这种代码组合解决了我的问题:

\sloppy
\listoffigures
\listoftables

\fussy % in the case there is something else after the LOF and LOT.

我应该使用这个包微型将来可以避免任何这些问题,因为它可以减少坏框和连字符问题。

相关内容