
Cada vez que escribo un título de una figura o tabla que ocupa más de una línea aparece en el 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%.
Y quiero que parezca
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%.
¿Qué tengo que hacer?
Gracias,
Ramón
Respuesta1
El comportamiento que usted describe es el predeterminado en las clases KOMA; puede cambiar esto configurándolo \setcapindent
para 0pt
obtener el resultado deseado:
\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}