我想将图片标题设为斜体并缩小。我该怎么做?
答案1
答案2
KOMA-Script 提供了用于自定义某些元素字体的命令:
\setkomafont{element}{commands}
\addtokomafont{element}{commands}
\usekomafont{element}
后者可用于将配置的字体用于其他元素。支持的元素包括caption
和captionlabel
。
因此我们可以这样写:
\setkomafont{caption}{\footnotesize\itshape}
\setkomafont{captionlabel}{\usekomafont{caption}}