Aparência da legenda

Aparência da legenda

Cada vez que escrevo a legenda de uma figura ou tabela que ocupa mais de uma linha ela aparece no documento como

Figure 6.2: Polarization curves at 750C for 3P_{CO}=P_{H_{2}} at the
            initial water concentrations of 3.2, 6.4, 9.6, 15, 20 and 25%.

E eu quero que pareça

Figure 6.2: Polarization curves at 750C for 3P_{CO}=P_{H_{2}} at the
initial water concentrations of 3.2, 6.4, 9.6, 15, 20 and 25%.

O que devo fazer?

Obrigado,

Ramon

Responder1

O comportamento que você descreve é ​​o padrão nas classes KOMA; você pode alterar isso configurando \setcapindentpara 0ptpara obter o resultado desejado:

\documentclass{scrartcl}

\setcapindent{0pt}

\begin{document}

\begin{figure}
\centering
A
\caption{Test figure with some addtional text spanning more than one line just for the example and some more text}
\end{figure}

\begin{table}
\centering
B
\caption{Test table with some addtional text spanning more than one line just for the example and some more text}
\end{table}

\end{document}

insira a descrição da imagem aqui

informação relacionada