图表中不同章节的图表名称之间的垂直间距

图表中不同章节的图表名称之间的垂直间距

我正在使用该chngcntr包来防止图形编号重新开始scrreprt。请看以下代码:

\usepackage{chngcntr}
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
\counterwithout{footnote}{chapter}

尽管编号没有中断,但有时,我在图表目录中的参考文献之间会出现一些垂直空白,这又起到了不同章节的图表之间的分隔符的作用。有办法去掉它吗?

在我的.lof图表文件中,这些线恰好是造成这个垂直空间的原因:

\addvspace {10\p@ }
\defcounter {refsection}{0}\relax
\addvspace {10\p@ }

编辑:一个示例代码来说明我的意思:

\documentclass[a4paper,fontsize=11pt,oneside,parskip=half]{scrreprt} 

\usepackage[demo]{graphicx}

\usepackage{scrhack} 

\usepackage{chngcntr}
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
\counterwithout{footnote}{chapter}

\begin{document}

\listoffigures


\clearpage

\chapter{Chapter}

\begin{figure}[htb]
\includegraphics{image}
\caption{First Figure}
\label{fig1}
\end{figure}
\begin{figure}[htb]
\includegraphics{image}
\caption{First Figure}
\label{fig2}
\end{figure}
\chapter{Chapter}
\begin{figure}[htb]
\includegraphics{image}
\caption{First Figure}
\label{fig3}
\end{figure}
\begin{figure}[htb]
\includegraphics{image}
\caption{First Figure}
\label{fig4}
\end{figure}

\chapter{Chapter}
\begin{figure}[htb]
\includegraphics{image}
\caption{First Figure}
\label{fig5}
\end{figure}
\begin{figure}[htb]
\includegraphics{image}
\caption{First Figure}
\label{fig6}
\end{figure}

\end{document}

在此处输入图片描述

答案1

嗯,这里真的没必要去浏览源代码。

\KOMAoption{chapteratlists}{0pt}

将设置章节间隙归零。所有受包控制的列表tocbasic均受影响。

或者,您也可以使用\KOMAoption{listof}{nochaptergap}

相关内容