我得到了图表列表,但每个章节/部分后面都有换行符。
可以禁用它吗?
我要这个:
图解 1.1
图解 2.1
图解 2.2
如果有帮助的话,我会使用 documentclass scrreprt。
\documentclass
[ oneside,
fontsize=12pt,
%DIV=15,
%BCOR=17mm,
headsepline,
%footsepline,
open=right,
paper=a4,
abstract=false,
listof=totoc,
bibliography=totoc,
titlepage,
headinclude=true,
footinclude=false,
numbers=noenddot
] {scrreprt}
答案1
提供完整的 MWE 会有所帮助。我不得不浪费时间准备一份。
尝试这个:
% loftabprob.tex SE 651779
\documentclass{scrreprt}
\begin{document}
% no extra chapter space in LoF and LoT
\begingroup
\renewcommand*{\addvspace}[1]{}
\listoftables
\listoffigures
\endgroup
\chapter{First}
\begin{figure}
A FIGURE
\caption{A figure}
\end{figure}
\chapter{Second}
\begin{figure}
AN ILLUSTRATION
\caption{Another figure}
\end{figure}
\end{document}
如果这对您有帮助,请确认。