
Каждый раз, когда я пишу подпись к рисунку или таблице, которая занимает более одной строки, она отображается в документе следующим образом:
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%.
И я хочу, чтобы это выглядело как
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%.
Что я должен делать?
Спасибо,
Рамон
решение1
Описанное вами поведение является поведением по умолчанию в классах KOMA; вы можете изменить его, установив значение , \setcapindent
чтобы 0pt
получить желаемый результат:
\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}