字幕外观

字幕外观

每次我写一个超过一行的图表或表格的标题时,它都会出现在文档中

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 类中的默认行为;您可以通过设置来更改它\setcapindent0pt获得所需的结果:

\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}

在此处输入图片描述

相关内容