我想将图表列表和表格列表的“标题前缀”的字体从衬线更改为\textbf
和无衬线字体(详情见图)。是否有KOMA
-Script 解决方法,还是我需要tocloft
包(...或其他东西)?
梅威瑟:
\documentclass[listof=entryprefix]{scrreprt}
\usepackage{mwe}
\begin{document}
\chapter{MWE}
\blindtext
\begin{figure}
\caption {MWE figure for detail information}
\end{figure}
\blindtext
%==== BACK MATTER ====
\listoffigures
\clearpage
\end{document}
我很感激任何帮助!
答案1
您可以使用\DeclareTOCStyleEntry
如以下 MWE 所示的命令:
\documentclass[listof=entryprefix]{scrreprt}
\DeclareTOCStyleEntry[entrynumberformat=\sffamily\bfseries]{tocline}{figure}
\DeclareTOCStyleEntry[entrynumberformat=\sffamily\bfseries]{tocline}{table}
\begin{document}
\chapter{MWE}
\begin{figure}
\caption {MWE figure for detail information}
\end{figure}
\begin{table}
\caption {MWE table for detail information}
\end{table}
\listoffigures
\listoftables
\end{document}
这将使标题中的前缀保持不变,并且仅影响和中的前缀和listoffigures
数字listoftables
。