我正在使用 documentclass scrbook,想要删除图表列表中的虚线和页码填充。
与目录的作用类似:
\RedeclareSectionCommands[
toclinefill=\quad,
tocraggedpagenumber=true,
]{part,chapter,section,subsection}
我认为这是一个简单的问题,但我在这里没有找到具体的讨论或解决方案。任何提示都非常感谢。如果我重复了某些内容,我很抱歉。
答案1
KOMA 中包含宏\DeclareTOCStyleEntry
。使用它您可以执行以下操作:
\documentclass[]{scrbook}
\usepackage[]{graphicx}
\DeclareTOCStyleEntry[linefill=\quad,raggedpagenumber=true]{tocline}{figure}
\begin{document}
\listoffigures
\begin{figure}% >>>
\centering
\includegraphics{example-image-duck}%
\caption
{%
A Friendly Duck%
\label{fig:duck}%
}%
\end{figure}% <<<
\end{document}