更改图形标题的全局属性

更改图形标题的全局属性

我只是在寻找可以更改图形标题的全局属性列表,例如更改字体大小、字体类型/系列等。

如果有人知道它们,或者有一个关于 LaTeX 命令的知名最新网站的链接,我们将不胜感激。

答案1

这里有几个可能性。如果你正在使用KOMA-Script,你可以直接使用:

\setkomafont{caption}{\sffamily\normalsize\mdseries\slshape}
\setkomafont{captionlabel}{\sffamily\normalsize\bfseries\upshape}

%% Some playing around with Tables
\KOMAoption{captions}{tableheading}

%% Some playing around with Figures
\KOMAoption{captions}{figuresignature} %Default

或者,如果使用captions包 --- 正如 egreg 所提到的 ---,您可以随时使用类似这样的方法(来自caption包文档)来对其进行 twerk:

\captionsetup{font=small}
\captionsetup[figure]{labelfont=bf,textfont=it}

相关内容