LoF/LoT:标题前缀的字体更改

LoF/LoT:标题前缀的字体更改

我想将图表列表和表格列表的“标题前缀”的字体从衬线更改为\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

在此处输入图片描述

相关内容