Estou apenas procurando uma lista de propriedades globais que podem ser alteradas para as legendas das figuras, como alterar o tamanho da fonte, tipo/família da fonte, etc.
Se alguém souber deles ou tiver um link para um site respeitável e atualizado para comandos LaTeX, ficaria muito grato.
Responder1
Existem algumas possibilidades aqui. Se você estiver usandoKOMA-Script
, você pode ir diretamente com:
\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
Ou, se estiver usando ocaptions
package ---como mencionado por egreg---, você sempre pode alterá-lo com algo assim (da caption
documentação do pacote):
\captionsetup{font=small}
\captionsetup[figure]{labelfont=bf,textfont=it}