给每个 \par 添加间距也会影响索引中的间距

给每个 \par 添加间距也会影响索引中的间距

我正在尝试增加每个段落之间的间距,这就是我所做的:

     '\documentclass{article}

      \usepackage[utf8]{inputenc}    
      \usepackage[english]{babel}

      \setlength{\parindent}{1em} % Indent of 1em
      \setlength{\parskip}{1em}. % Spacing between paragraphs of 1em

      \begin{document}

      \tableofcontents

      \listoffigures

      \listoftables

       \chapter

          This is the text in first paragraph. This is the text in first 
          paragraph. This is the text in first paragraph. 
          \par
          This is the text in second paragraph...

       \end{document}'

它正确地添加了我想要的间距。

但是,它还会在目录、图片列表和表格列表的每行之间添加间距。如果没有命令“\setlength{\parskip}{1em}”,段落之间和目录中就没有间距,如下所示: 索引中的行与行之间没有间距段落之间无间距 但是使用此命令,我在目录的每一行之间以及段落之间都有 1em 的间距,正如您在此处看到的: 索引中每行之间的间距段落之间的间距。 如何防止乳胶这样做,并且只留下段落之间的间距,而不是目录、图表列表和表格列表内的间距?

谢谢。

相关内容