그림 표의 여러 장에 있는 그림 이름 사이의 수직 간격

그림 표의 여러 장에 있는 그림 이름 사이의 수직 간격

내 .chngcntrscrreprt다음 코드를 살펴보세요.

\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}.

관련 정보