我正在学习 LaTeX 来排版一些文档。我希望这里有人能帮助我。
如何继续在图表列表和表格列表中添加空格。
我正在使用 \listoffigures 和 \listoftables 来生成这两个页面。
表格列表页面如下所示:
如您所见,标题“表格列表”几乎与页码 x 对齐。
我想要的是看起来像这样的东西:
我想在页码和标题之间添加几个空格。我想对图表列表页面和表格列表页面以及目录执行此操作。
希望有人能帮忙。谢谢!
答案1
我正在使用 tocloft 包。
% Add this to your preamble
\usepackage{tocloft} % this package manipulates toc, lot, lof
% adding 1in vertical space in ToC, LoF and LoT
% change to the value 1in in to anything you like
% greater the value greater the space between page number and title
\setlength{\cftbeforetoctitleskip}{1in}
\setlength{\cftbeforelottitleskip}{1in}
\setlength{\cftbeforeloftitleskip}{1in}